7 lines
113 B
Python
7 lines
113 B
Python
__all__ = ('Evaluable',)
|
|
|
|
|
|
class Evaluable:
|
|
def next(self) -> 'Evaluable':
|
|
raise NotImplementedError
|