diff --git a/Runtime/Architecture.py b/Runtime/Architecture.py index a8d465d..d17f61f 100644 --- a/Runtime/Architecture.py +++ b/Runtime/Architecture.py @@ -140,7 +140,7 @@ class Architecture: return type_ in cls._RegisteredObjects @classmethod - def Get(cls, type_:type) -> Any: + def Get[T](cls, type_:Typen[T]) -> T: return cls._RegisteredObjects[type_] @classmethod