File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ def _get_vc_env(plat_spec):
159
159
stderr = subprocess .STDOUT ,
160
160
).decode ('utf-16le' , errors = 'replace' )
161
161
except subprocess .CalledProcessError as exc :
162
- log .error (exc .output ) # noqa: RUF100, TRY400
162
+ log .error (exc .output )
163
163
raise DistutilsPlatformError (f"Error executing { exc .cmd } " )
164
164
165
165
env = {
Original file line number Diff line number Diff line change @@ -16,11 +16,7 @@ extend-select = [
16
16
" YTT" ,
17
17
]
18
18
ignore = [
19
- # local
20
- " PERF203" ,
21
- " TRY003" ,
22
-
23
- # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
19
+ # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
24
20
" W191" ,
25
21
" E111" ,
26
22
" E114" ,
@@ -39,6 +35,9 @@ ignore = [
39
35
# local
40
36
" B028" ,
41
37
" B904" ,
38
+ " PERF203" ,
39
+ " TRY003" ,
40
+ " TRY400" ,
42
41
]
43
42
44
43
[format ]
You can’t perform that action at this time.
0 commit comments