Skip to content

Commit f220ae9

Browse files
committed
fixup! fixes for pydantic 2
1 parent 7febfca commit f220ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

murdock/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class JobModel(BaseModel):
108108
None,
109109
title="Status of the job",
110110
)
111-
state: str = Field(
111+
state: Optional[str] = Field(
112112
None,
113113
title="State of a job (queued, running, passed, errored or stopped)",
114114
)

0 commit comments

Comments
 (0)