Skip to content

Commit

Permalink
tedana/workflows/parser_utils.py: Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lestropie committed Apr 16, 2024
1 parent 5fa9cb3 commit 209a01d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tedana/workflows/parser_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def check_int(intvalue):
try:
floatvalue = float(value)
except ValueError:
msg = f"Argument to {dashes}tedpca must be either a number, or one of: {', '.join(valid_options)}"
msg = f"Argument to {dashes}tedpca must be either a number, " \
f"or one of: {', '.join(valid_options)}"
raise error(msg)

try:
Expand Down

0 comments on commit 209a01d

Please sign in to comment.