Skip to content

Commit a841862

Browse files
Allow str type for step_version_changes field in WorkflowDictRunSummary model
1 parent d27d6f3 commit a841862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/schema/workflows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ class WorkflowDictRunSummary(WorkflowDictBaseModel):
670670
# description="The encoded ID of the history associated with the workflow (or None if not applicable).",
671671
description="TODO",
672672
)
673-
step_version_changes: Optional[List[Dict[str, Any]]] = Field(
673+
step_version_changes: Optional[List[Union[str, Dict[str, Any]]]] = Field(
674674
None,
675675
title="Step Version Changes",
676676
description="Version changes for the workflow steps.",

0 commit comments

Comments
 (0)