diff --git a/pkgs/clan-cli/clan_cli/inventory/classes.py b/pkgs/clan-cli/clan_cli/inventory/classes.py index a44a7f7db..33dcae521 100644 --- a/pkgs/clan-cli/clan_cli/inventory/classes.py +++ b/pkgs/clan-cli/clan_cli/inventory/classes.py @@ -31,6 +31,6 @@ Service = dict[str, Any] class Inventory(TypedDict): machines: NotRequired[dict[str, Machine]] meta: NotRequired[Meta] - modules: NotRequired[dict[str, str]] + modules: NotRequired[dict[str, int | bool | None | str | dict[str, Any] | float | list[Any]]] services: NotRequired[dict[str, Service]] tags: NotRequired[dict[str, list[str]]]