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 e81badf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tedana/workflows/parser_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ 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 e81badf

Please sign in to comment.