Skip to content

Commit 0791acd

Browse files
committed
update
1 parent 927b67e commit 0791acd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/models-library/src/models_library/generated_models/docker_rest_api.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# generated by datamodel-codegen:
22
# filename: https://docs.docker.com/reference/api/engine/version/v1.41.yaml
3-
# timestamp: 2024-12-03T17:32:32+00:00
3+
# timestamp: 2024-12-03T18:55:58+00:00
44

55
from __future__ import annotations
66

@@ -5695,7 +5695,7 @@ class SwarmInfo(BaseModel):
56955695
] = ""
56965696
local_node_state: Annotated[
56975697
LocalNodeState | None, Field(alias="LocalNodeState")
5698-
] = ""
5698+
] = "" # type: ignore[dict-item]
56995699
control_available: Annotated[
57005700
bool | None, Field(alias="ControlAvailable", examples=[True])
57015701
] = False
@@ -6723,7 +6723,9 @@ class SystemInfo(BaseModel):
67236723
}
67246724
],
67256725
),
6726-
] = {"runc": {"path": "runc"}}
6726+
] = {
6727+
"runc": {"path": "runc"}
6728+
} # type: ignore[dict-item]
67276729
default_runtime: Annotated[
67286730
str | None,
67296731
Field(

0 commit comments

Comments
 (0)