Skip to content

Commit

Permalink
Easier debugging of assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Jul 12, 2024
1 parent e0ee749 commit 5c7b6b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/cwl/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ def split_step_references(step_references, workflow_id=None, multiple=True):
if multiple:
return split_references
else:
assert len(split_references) == 1
assert len(split_references) == 1, split_references
return split_references[0]


Expand Down

0 comments on commit 5c7b6b6

Please sign in to comment.