File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 145
145
language : python
146
146
types : [text]
147
147
- id : fix-encoding-pragma
148
- name : fix python encoding pragma
148
+ name : fix python encoding pragma (deprecated)
149
149
description : ' adds # -*- coding: utf-8 -*- to the top of python files.'
150
150
language : python
151
151
entry : fix-encoding-pragma
Original file line number Diff line number Diff line change @@ -127,6 +127,9 @@ The following arguments are available:
127
127
removes UTF-8 byte order marker
128
128
129
129
#### ` fix-encoding-pragma `
130
+
131
+ _ Deprecated since py2 is EOL - use [ pyupgrade] ( https://github.com/asottile/pyupgrade ) instead._
132
+
130
133
Add ` # -*- coding: utf-8 -*- ` to the top of python files.
131
134
- To remove the coding pragma pass ` --remove ` (useful in a python3-only codebase)
132
135
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
3
import argparse
4
+ import sys
4
5
from typing import IO
5
6
from typing import NamedTuple
6
7
from typing import Sequence
@@ -107,6 +108,13 @@ def _normalize_pragma(pragma: str) -> bytes:
107
108
108
109
109
110
def main (argv : Sequence [str ] | None = None ) -> int :
111
+ print (
112
+ 'warning: this hook is deprecated and will be removed in a future '
113
+ 'release because py2 is EOL. instead, use '
114
+ 'https://github.com/asottile/pyupgrade' ,
115
+ file = sys .stderr ,
116
+ )
117
+
110
118
parser = argparse .ArgumentParser (
111
119
'Fixes the encoding pragma of python files' ,
112
120
)
You can’t perform that action at this time.
0 commit comments