OP-3909 - fix - add internal variable

This commit is contained in:
Petr Kalis 2022-11-03 12:47:01 +01:00
parent ab4ed37604
commit e9834d973d

View file

@ -39,6 +39,10 @@ CREATE_PATH = os.path.join(PLUGINS_DIR, "create")
class AfterEffectsHost(HostBase, IWorkfileHost, ILoadHost, IPublishHost): class AfterEffectsHost(HostBase, IWorkfileHost, ILoadHost, IPublishHost):
name = "aftereffects" name = "aftereffects"
def __init__(self):
self._stub = None
super(AfterEffectsHost, self).__init__()
@property @property
def stub(self): def stub(self):
""" """