Spaces:
Runtime error
Runtime error
File size: 132 Bytes
66340f1 |
1 2 3 4 5 6 7 8 |
from abc import ABC, abstractmethod
class ParserInterface(ABC):
@abstractmethod
def parse(file_path) -> str:
pass
|