From 4ba5bfdfee9abfdd78623f0375322e675a7bb3c9 Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Thu, 6 Nov 2025 20:37:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=87=BD=E6=95=B0=E6=B3=9B?= =?UTF-8?q?=E5=9E=8B=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/Architecture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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