We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0791acd commit 0d55f35Copy full SHA for 0d55f35
packages/models-library/src/models_library/generated_models/docker_rest_api.py
@@ -5695,7 +5695,7 @@ class SwarmInfo(BaseModel):
5695
] = ""
5696
local_node_state: Annotated[
5697
LocalNodeState | None, Field(alias="LocalNodeState")
5698
- ] = "" # type: ignore[dict-item]
+ ] = "" # type: ignore[assignment]
5699
control_available: Annotated[
5700
bool | None, Field(alias="ControlAvailable", examples=[True])
5701
] = False
@@ -6724,8 +6724,8 @@ class SystemInfo(BaseModel):
6724
],
6725
),
6726
] = {
6727
- "runc": {"path": "runc"}
6728
- } # type: ignore[dict-item]
+ "runc": {"path": "runc"} # type: ignore[dict-item]
+ }
6729
default_runtime: Annotated[
6730
str | None,
6731
Field(
0 commit comments