From 9fe457ebd5aa83222e71f1924bfaa0dfa01edd0d Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Sat, 16 Aug 2025 11:59:16 +0200 Subject: [PATCH] lib/clanModules: update nix_models --- pkgs/clan-cli/clan_lib/nix_models/clan.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkgs/clan-cli/clan_lib/nix_models/clan.py b/pkgs/clan-cli/clan_lib/nix_models/clan.py index b8f0f282f..48cdbb991 100644 --- a/pkgs/clan-cli/clan_lib/nix_models/clan.py +++ b/pkgs/clan-cli/clan_lib/nix_models/clan.py @@ -97,18 +97,10 @@ class InventoryMeta(TypedDict): - - -class InventoryService(TypedDict): - pass - - - InventoryInstancesType = dict[str, InventoryInstance] InventoryMachinesType = dict[str, InventoryMachine] InventoryMetaType = InventoryMeta InventoryModulesType = dict[str, dict[str, Any] | list[Any] | bool | float | int | str | None] -InventoryServicesType = dict[str, InventoryService] InventoryTagsType = dict[str, list[str]] class Inventory(TypedDict): @@ -116,7 +108,6 @@ class Inventory(TypedDict): machines: NotRequired[InventoryMachinesType] meta: NotRequired[InventoryMetaType] modules: NotRequired[InventoryModulesType] - services: NotRequired[InventoryServicesType] tags: NotRequired[InventoryTagsType]