We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be53a05 commit 514fcf2Copy full SHA for 514fcf2
1 file changed
fairworkflows/prov.py
@@ -55,7 +55,7 @@ def __init__(self, step=None, step_args:Dict = None, time_start:datetime = None,
55
if num_outputs == 1:
56
outvardict = {'out1': output}
57
else:
58
- outvardict = {('out' + str(i)): outval for outval in output }
+ outvardict = {('out' + str(i)): outval for i, outval in enumerate(output) }
59
60
for outputvar in step.outputs:
61
retrovar = rdflib.BNode(outputvar.name)
0 commit comments