from bu4.evaluation.aftervalue import EValue, Evaluable __all__ = ('ENull',) class ENull(EValue): def call(self, argument: Evaluable) -> Evaluable: return self def __str__(self): return f'?'