ruff: enable flake8-import-conventions/implicit-str-concat

This commit is contained in:
Jelle van der Waa 2023-11-03 12:15:47 +01:00 committed by Jelle van der Waa
parent 6b43ce1407
commit fea8d00b6d
2 changed files with 3 additions and 2 deletions

View File

@ -383,8 +383,7 @@ def update_common(archname, reponame, pkgs, sanity_check=True):
# Fewer than 20 packages makes the percentage check unreliable, but it
# also means we expect the repo to fluctuate a lot.
msg = "Package database %s (%s) has %.1f%% the number of packages " \
"the web database"
msg = "Package database %s (%s) has %.1f%% the number of packages the web database"
if not sanity_check:
pass
elif repository.testing or repository.public_testing or repository.staging:

View File

@ -4,6 +4,8 @@ select = [
"F", # pyflakes
"G", # flake8-logging-format
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
]
# Never enforce `E501` (line length violations).