We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91bc99a commit 340137fCopy full SHA for 340137f
distutils/_msvccompiler.py
@@ -159,7 +159,7 @@ def _get_vc_env(plat_spec):
159
stderr=subprocess.STDOUT,
160
).decode('utf-16le', errors='replace')
161
except subprocess.CalledProcessError as exc:
162
- log.error(exc.output) # noqa: RUF100, TRY400
+ log.error(exc.output)
163
raise DistutilsPlatformError(f"Error executing {exc.cmd}")
164
165
env = {
ruff.toml
@@ -39,6 +39,7 @@ ignore = [
39
# local
40
"B028",
41
"B904",
42
+ "TRY400",
43
]
44
45
[format]
0 commit comments