mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
PypeModule inherit from abstract class
This commit is contained in:
parent
d5c0fa464a
commit
4db75b45e5
2 changed files with 2 additions and 2 deletions
|
|
@ -1,8 +1,9 @@
|
|||
from uuid import uuid4
|
||||
from abc import ABC
|
||||
from pype.api import Logger
|
||||
|
||||
|
||||
class PypeModule:
|
||||
class PypeModule(ABC):
|
||||
"""Base class of pype module."""
|
||||
enabled = False
|
||||
name = None
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
import os
|
||||
import sys
|
||||
import inspect
|
||||
|
||||
import pype.modules
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue