mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
PypeModule is python 2 compatible
This commit is contained in:
parent
40bf307454
commit
aefe8f3b72
1 changed files with 5 additions and 2 deletions
|
|
@ -1,11 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Base class for Pype Modules."""
|
||||
from uuid import uuid4
|
||||
from abc import ABC, abstractmethod
|
||||
from pype.api import Logger
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import six
|
||||
|
||||
|
||||
class PypeModule(ABC):
|
||||
|
||||
@six.add_metaclass(ABCMeta)
|
||||
class PypeModule:
|
||||
"""Base class of pype module.
|
||||
|
||||
Attributes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue