Skip to content

Commit

Permalink
fix workflow ouput order (#1473)
Browse files Browse the repository at this point in the history
  • Loading branch information
LawyZheng authored Jan 3, 2025
1 parent 1ec832e commit c9c97fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyvern/forge/sdk/workflow/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,8 +726,8 @@ async def get_output_parameter_workflow_run_output_parameter_tuples(

return [
(output_parameter, workflow_run_output_parameter)
for output_parameter in output_parameters
for workflow_run_output_parameter in workflow_run_output_parameters
for output_parameter in output_parameters
if output_parameter.output_parameter_id == workflow_run_output_parameter.output_parameter_id
]

Expand Down

0 comments on commit c9c97fb

Please sign in to comment.