Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Apr 2, 2024
1 parent 1a545ae commit 8612c35
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 @@ -1552,7 +1552,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 8612c35

Please sign in to comment.