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 c191ca3 commit 31a67d9Copy full SHA for 31a67d9
pythonbuild/cpython.py
@@ -599,7 +599,7 @@ def derive_setup_local(
599
600
if b"=" in line:
601
raise Exception(
602
- "= appears in EXTRA_MODULES line; will confuse " "makesetup: {}".format(
+ "= appears in EXTRA_MODULES line; will confuse makesetup: {}".format(
603
line.decode("utf-8")
604
)
605
ruff.toml
@@ -1,10 +1,12 @@
1
fix = true
2
+# unsafe-fixes = true
3
4
[lint]
5
select = [
- "B", # flake8-bugbear
6
- "C4",# flake8-comprehensions
7
- "F", # Pyflakes (F)
8
- "I", # isort
+ "B", # flake8-bugbear
+ "C4", # flake8-comprehensions
+ "F", # Pyflakes
9
+ "I", # isort
10
+ "ISC", # flake8-implicit-str-concat
11
"UP", # pyupgrade
12
]
0 commit comments