builtup4/bu4/parsing/abstractparser.py
2021-07-24 15:10:11 +03:00

9 lines
173 B
Python

__all__ = ('AbstractParser',)
# Copyright (c) PARRRATE T&V 2021. All rights reserved.
class AbstractParser:
def read(self) -> int:
raise NotImplementedError