(self)
| 285 | return any(p in file_path for p in self._protected_patterns) |
| 286 | |
| 287 | def get_protected_files(self) -> List[str]: |
| 288 | return [f.file_path for f in self._files.values() if f.is_protected] |
| 289 | |
| 290 | def status(self) -> dict: |
| 291 | return { |
no outgoing calls