PypeModule inherit from abstract class

This commit is contained in:
iLLiCiTiT 2020-09-22 14:06:43 +02:00
parent d5c0fa464a
commit 4db75b45e5
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -1,5 +1,4 @@
import os
import sys
import inspect
import pype.modules