Skip to content

Commit 42ae276

Browse files
Apply ruff/Pyflakes rule F541
F541 f-string without any placeholders
1 parent 88bb476 commit 42ae276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mriqc/interfaces/webapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def upload_qc_metrics(
290290
timeout=15,
291291
)
292292
except requests.ConnectionError as err:
293-
errmsg = (f'Error uploading IQMs: Connection error:', f'{err}')
293+
errmsg = ('Error uploading IQMs: Connection error:', f'{err}')
294294
except requests.exceptions.ReadTimeout as err:
295295
errmsg = (f'Error uploading IQMs: Server {endpoint} is down.', f'{err}')
296296

0 commit comments

Comments
 (0)