kateforsberg's picture
updated files to reflect imports
09b3f4b
raw
history blame
212 Bytes
from abc import ABC, abstractmethod
from pathlib import Path
from attrs import define, field
@define()
class BaseParser(ABC):
file_path: Path = field()
@abstractmethod
def parse(self) -> dict: ...