interfaces inherit from OpenPypeInterface

This commit is contained in:
iLLiCiTiT 2021-07-27 19:01:08 +02:00
parent f2b53133e0
commit abdaf019ba
6 changed files with 36 additions and 19 deletions

View file

@ -2,12 +2,17 @@ import os
import collections
from abc import ABCMeta, abstractmethod
import six
from .. import PypeModule, ITrayService, IIdleManager, IWebServerRoutes
from .. import (
PypeModule,
OpenPypeInterface,
ITrayService,
IIdleManager,
IWebServerRoutes
)
from avalon.api import AvalonMongoDB
@six.add_metaclass(ABCMeta)
class ITimersManager:
class ITimersManager(OpenPypeInterface):
timer_manager_module = None
@abstractmethod