From 2c552ddacb2d1d005c7082a991eeaca6768ab4fa Mon Sep 17 00:00:00 2001 From: Matthias Veit Date: Fri, 7 Jun 2024 21:13:49 +0200 Subject: [PATCH] fix type --- fixlib/fixlib/core/model_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixlib/fixlib/core/model_check.py b/fixlib/fixlib/core/model_check.py index 0d2fb3c6d1..2ecea9fb44 100644 --- a/fixlib/fixlib/core/model_check.py +++ b/fixlib/fixlib/core/model_check.py @@ -162,7 +162,7 @@ def check_overlap(*base: Type[BaseResource]) -> None: :raise Exception: if there is an overlap """ - kind_names: Dict[str, Type] = {} + kind_names: Dict[str, Type[Any]] = {} model_classes = load_plugin_classes(*base) for model in transitive_classes(model_classes): if kind := getattr(model, "kind", None):