Skip to content

Commit

Permalink
Add type annotation for workflow_step
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Dec 18, 2024
1 parent c9832dd commit 20d904e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9420,7 +9420,7 @@ class WorkflowInvocationStep(Base, Dictifiable, Serializable):
)
action: Mapped[Optional[bytes]] = mapped_column(MutableJSONType)

workflow_step = relationship("WorkflowStep")
workflow_step: Mapped[WorkflowStep] = relationship("WorkflowStep")
job: Mapped[Optional["Job"]] = relationship(back_populates="workflow_invocation_step", uselist=False)
implicit_collection_jobs = relationship("ImplicitCollectionJobs", uselist=False)
output_dataset_collections = relationship(
Expand Down

0 comments on commit 20d904e

Please sign in to comment.