12 lines
195 B
Python
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
|