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
When using DeployedFlow.from_argo_workflows, some valid param configurations lead to errors. This seems to be because a "fake" flow file is constructed that will have invalid Python syntax:
param names with hyphens (e.g. dry-run) become dry-run = Parameter(...) which is invalid Python syntax
param help/descriptions with ' in them become dry_run = Parameter('dry_run', type=bool, help='Dry run, don't upload any results', required=False) which is also invalid (string is ended early by don't)
The text was updated successfully, but these errors were encountered:
When using
DeployedFlow.from_argo_workflows
, some valid param configurations lead to errors. This seems to be because a "fake" flow file is constructed that will have invalid Python syntax:dry-run
) becomedry-run = Parameter(...)
which is invalid Python syntax'
in them becomedry_run = Parameter('dry_run', type=bool, help='Dry run, don't upload any results', required=False)
which is also invalid (string is ended early bydon't
)The text was updated successfully, but these errors were encountered: