Source code for smqtk_core

import abc

from .configuration import Configurable  # noqa: F401
from .plugin import Pluggable  # noqa: F401


[docs]class Plugfigurable (Pluggable, Configurable, metaclass=abc.ABCMeta): """ When you don't want to have to constantly inherit from two mixin classes all the time, we provide this as a convenience that descends from both mixin classes: Pluggable and Configurable. """