From 16644309b45bd43413ae51051179ea9afae4e419 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Thu, 27 Mar 2025 19:37:13 +0100 Subject: [PATCH] fix(cli/inventory): update classes --- pkgs/clan-cli/clan_cli/inventory/classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]]]