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