Source code for lablib.operators.base

from abc import ABC

[docs] class BaseOperator(ABC): """Base class for all operators. Currently this is only used for type checking. """ pass