builtup4/bu4/evaluation/constructs/etraceable.py

12 lines
195 B
Python

# Copyright (c) PARRRATE T&V 2021. All rights reserved.
import abc
from bu4.evaluation.constructs.evalue import EValue
__all__ = ('ETraceable',)
class ETraceable(EValue, abc.ABC):
pass