(self, file_path: str)
| 279 | return file_path if file_path in self._files else None |
| 280 | |
| 281 | def is_tracked(self, file_path: str) -> bool: |
| 282 | return file_path in self._files |
| 283 | |
| 284 | def _is_protected(self, file_path: str) -> bool: |
| 285 | return any(p in file_path for p in self._protected_patterns) |
no outgoing calls