Enable flake8-implicit-str-concat ruff rules

See https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
This commit is contained in:
Nicola Soranzo
2024-04-29 13:37:54 +01:00
parent 7463439bd0
commit 534010a8cb
34 changed files with 78 additions and 78 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ try:
except ImportError:
print(
"Could not import the requests module. See http://docs.python-requests.org/en/latest/"
+ " or install with 'pip install requests'"
" or install with 'pip install requests'"
)
raise
@@ -46,7 +46,7 @@ if __name__ == "__main__":
if len(sys.argv) < 5:
print(
"history_upload.py <api key> <galaxy base url> <history id> <filepath to upload>\n"
+ " (where galaxy base url is just the root url where your Galaxy is served; e.g. 'localhost:8080')"
" (where galaxy base url is just the root url where your Galaxy is served; e.g. 'localhost:8080')"
)
sys.exit(1)