Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias committed Jun 7, 2024
1 parent f2f0fe5 commit 2c552dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixlib/fixlib/core/model_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2c552dd

Please sign in to comment.