From 3fa432a2bbed19e21b92b7aa435cd2c5c16495bd Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Wed, 5 Nov 2025 16:05:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=80=E4=B8=AA=E7=BB=A7?= =?UTF-8?q?=E6=89=BF=E9=94=99=E8=AF=AF?= 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 e2e39f7..cfe63cd 100644 --- a/Runtime/Architecture.py +++ b/Runtime/Architecture.py @@ -10,7 +10,7 @@ class IModel(ABC): pass -class IDataModel(ABC, IModel): +class IDataModel(IModel): @abstractmethod def Save(self) -> str: pass