fix(cli/inventory): update classes

This commit is contained in:
Johannes Kirschbauer
2025-03-27 19:37:13 +01:00
parent ca1777fddc
commit 16644309b4

View File

@@ -31,6 +31,6 @@ Service = dict[str, Any]
class Inventory(TypedDict): class Inventory(TypedDict):
machines: NotRequired[dict[str, Machine]] machines: NotRequired[dict[str, Machine]]
meta: NotRequired[Meta] 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]] services: NotRequired[dict[str, Service]]
tags: NotRequired[dict[str, list[str]]] tags: NotRequired[dict[str, list[str]]]