Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Mar 26, 2024
1 parent 6ee5b09 commit 3fe25d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/tool_util/verify/interactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,9 @@ def register_exception(e: Exception):
else:
output_data = data_list[len(data_list) - len(testdef.outputs) + output_index]
except IndexError:
error = AssertionError(f"Tool did not produce an output with name '{name}' (or at index {output_index})")
error = AssertionError(
f"Tool did not produce an output with name '{name}' (or at index {output_index})"
)
register_exception(error)
if output_data:
try:
Expand Down

0 comments on commit 3fe25d1

Please sign in to comment.