Skip to content

Commit 54d13b4

Browse files
committed
modernize
1 parent 03ecfe7 commit 54d13b4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/models-library/src/models_library/projects_state.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,11 @@ class ProjectRunningState(BaseModel):
227227

228228

229229
class ProjectState(BaseModel):
230-
locked: Annotated[ProjectLocked, Field(..., description="The project lock state")]
231-
state: ProjectRunningState = Field(..., description="The project running state")
230+
share_state: Annotated[
231+
ProjectShareState, Field(description="The project lock state")
232+
]
233+
state: Annotated[
234+
ProjectRunningState, Field(description="The project running state")
235+
]
232236

233237
model_config = ConfigDict(extra="forbid")

0 commit comments

Comments
 (0)