mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 10:51:34 +08:00
Enable flake8-implicit-str-concat ruff rules
See https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user