Skip to content

Commit

Permalink
Apply ruff/flake8-implicit-str-concat rule ISC001
Browse files Browse the repository at this point in the history
ISC001 Implicitly concatenated string literals on one line
  • Loading branch information
DimitriPapadopoulos committed Jun 2, 2024
1 parent b9a1546 commit 7b39a67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ def pkgconfig(*packages, **kw):
try:
subprocess.check_output(["pkg-config", package])
except (subprocess.CalledProcessError, OSError):
print(
"Can't find %s with pkg-config fallback to " "static config" % package
)
print("Can't find %s with pkg-config fallback to static config" % package)
for distutils_key in flag_map:
config.setdefault(distutils_key, []).extend(
FALLBACK_CONFIG[distutils_key]
Expand Down

0 comments on commit 7b39a67

Please sign in to comment.