Skip to content

Commit

Permalink
fixup! fixes for pydantic 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Jan 17, 2024
1 parent 7febfca commit f220ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion murdock/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class JobModel(BaseModel):
None,
title="Status of the job",
)
state: str = Field(
state: Optional[str] = Field(
None,
title="State of a job (queued, running, passed, errored or stopped)",
)
Expand Down

0 comments on commit f220ae9

Please sign in to comment.