mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
interfaces inherit from OpenPypeInterface
This commit is contained in:
parent
f2b53133e0
commit
abdaf019ba
6 changed files with 36 additions and 19 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue