Predicate to determine if a file should be processed. Args: file_path: Path to the file to check Returns: True if the file should be processed, False otherwise
(self, file_path: str)
| 125 | |
| 126 | @abstractmethod |
| 127 | def should_process_file(self, file_path: str) -> bool: |
| 128 | """Predicate to determine if a file should be processed. |
| 129 | |
| 130 | Args: |
| 131 | file_path: Path to the file to check |
| 132 | |
| 133 | Returns: |
| 134 | True if the file should be processed, False otherwise |
| 135 | """ |
| 136 | pass |
| 137 | |
| 138 | @abstractmethod |
| 139 | def check_file_content(self, file_content: FileContent) -> list[str]: |
no outgoing calls