Skip to content

Commit

Permalink
Allow str type for step_version_changes field in WorkflowDictRunSumma…
Browse files Browse the repository at this point in the history
…ry model
  • Loading branch information
heisner-tillman committed Mar 28, 2024
1 parent d27d6f3 commit a841862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/schema/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ class WorkflowDictRunSummary(WorkflowDictBaseModel):
# description="The encoded ID of the history associated with the workflow (or None if not applicable).",
description="TODO",
)
step_version_changes: Optional[List[Dict[str, Any]]] = Field(
step_version_changes: Optional[List[Union[str, Dict[str, Any]]]] = Field(
None,
title="Step Version Changes",
description="Version changes for the workflow steps.",
Expand Down

0 comments on commit a841862

Please sign in to comment.