mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
7 lines
No EOL
200 B
Python
7 lines
No EOL
200 B
Python
from typing import Any, BinaryIO
|
|
from backend.condition.parsing.parser import Parser
|
|
|
|
|
|
class PeabodyParser(Parser):
|
|
def parse(self, file_stream: BinaryIO) -> Any:
|
|
raise NotImplementedError |