Skip to content

Commit 31a67d9

Browse files
committed
Add flake8-implicit-str-concat
1 parent c191ca3 commit 31a67d9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pythonbuild/cpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ def derive_setup_local(
599599

600600
if b"=" in line:
601601
raise Exception(
602-
"= appears in EXTRA_MODULES line; will confuse " "makesetup: {}".format(
602+
"= appears in EXTRA_MODULES line; will confuse makesetup: {}".format(
603603
line.decode("utf-8")
604604
)
605605
)

ruff.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
fix = true
2+
# unsafe-fixes = true
23

34
[lint]
45
select = [
5-
"B", # flake8-bugbear
6-
"C4",# flake8-comprehensions
7-
"F", # Pyflakes (F)
8-
"I", # isort
6+
"B", # flake8-bugbear
7+
"C4", # flake8-comprehensions
8+
"F", # Pyflakes
9+
"I", # isort
10+
"ISC", # flake8-implicit-str-concat
911
"UP", # pyupgrade
1012
]

0 commit comments

Comments
 (0)