diff --git a/pkgs/clan-cli/clan_cli/inventory/classes.py b/pkgs/clan-cli/clan_cli/inventory/classes.py index a44a7f7db..08715cfa4 100644 --- a/pkgs/clan-cli/clan_cli/inventory/classes.py +++ b/pkgs/clan-cli/clan_cli/inventory/classes.py @@ -5,7 +5,7 @@ # ruff: noqa: N806 # ruff: noqa: F401 # fmt: off -from typing import Any, Literal, NotRequired, TypedDict +from typing import Any, Literal, TypedDict, NotRequired class MachineDeploy(TypedDict): @@ -33,4 +33,4 @@ class Inventory(TypedDict): meta: NotRequired[Meta] modules: NotRequired[dict[str, str]] services: NotRequired[dict[str, Service]] - tags: NotRequired[dict[str, list[str]]] + tags: NotRequired[dict[str, list[str]]] \ No newline at end of file