You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I compiled a pipeline with func_to_container_op, and didn't specify any outputs, since there aren't any. It then failed with NameError: name '_output_files' is not defined
What did you expect to happen:
I expected the pipeline step to work without having to specify an output.
What steps did you take:
Here's the function that I'm converting to a container op:
I can fix this issue by specifying a return value. Even something like -> str and not returning anything works, but it would be nice to avoid unnecessary boilerplate.
The text was updated successfully, but these errors were encountered:
What happened:
I compiled a pipeline with
func_to_container_op
, and didn't specify any outputs, since there aren't any. It then failed withNameError: name '_output_files' is not defined
What did you expect to happen:
I expected the pipeline step to work without having to specify an output.
What steps did you take:
Here's the function that I'm converting to a container op:
There isn't anything useful to return, since the bucket name is parameterized in the workflow parameters.
Anything else you would like to add:
This is the relevant bit from the auto-generated wrapper that is failing:
I can fix this issue by specifying a return value. Even something like
-> str
and not returning anything works, but it would be nice to avoid unnecessary boilerplate.The text was updated successfully, but these errors were encountered: