Load data from file. Args: file_path: Path to the data file. Returns: list: List of data dictionaries.
(self, file_path: str)
| 32 | |
| 33 | @abstractmethod |
| 34 | def load(self, file_path: str) -> list: |
| 35 | """Load data from file. |
| 36 | |
| 37 | Args: |
| 38 | file_path: Path to the data file. |
| 39 | |
| 40 | Returns: |
| 41 | list: List of data dictionaries. |
| 42 | """ |
| 43 | pass |
| 44 | |
| 45 | @abstractmethod |
| 46 | def save(self, data: list, file_path: str, **kwargs) -> None: |
no outgoing calls
no test coverage detected