From d1dfa251d9fe02d12ffc74041b8a9aaf6439638c Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 28 Jul 2021 12:05:52 +0200 Subject: [PATCH] simplified fake interface --- openpype/modules/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/modules/base.py b/openpype/modules/base.py index d2a1b8ed93..877c363f61 100644 --- a/openpype/modules/base.py +++ b/openpype/modules/base.py @@ -53,7 +53,7 @@ class _InterfacesClass(_ModuleClass): if attr_name not in self.__attributes__: # Fake Interface if is not missing self.__attributes__[attr_name] = type( - "{}".format(attr_name), + attr_name, (MissingInteface, ), {} )