Skip to content

Commit 87057f6

Browse files
fix ordering
1 parent 4470054 commit 87057f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ class ProjectStatus(str, Enum):
5757

5858
class ProjectLocked(BaseModel):
5959
value: bool = Field(..., description="True if the project is locked")
60+
status: ProjectStatus = Field(..., description="The status of the project")
6061
owner: Owner | None = Field(
6162
default=None, description="If locked, the user that owns the lock"
6263
)
63-
status: ProjectStatus = Field(..., description="The status of the project")
6464

6565
class Config:
6666
extra = Extra.forbid

0 commit comments

Comments
 (0)