Skip to content

Commit

Permalink
Make latest_workflow_uuid optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Mar 7, 2024
1 parent bc78b6f commit 67e9d5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -2136,8 +2136,8 @@ class StoredWorkflowSummary(Model, WithModelClass):
title="Owner",
description="The name of the user who owns this workflow.",
)
latest_workflow_uuid: UUID4 = Field( # Is this really used?
...,
latest_workflow_uuid: Optional[UUID4] = Field(
None,
title="Latest workflow UUID",
description="TODO",
)
Expand Down

0 comments on commit 67e9d5f

Please sign in to comment.