(self, event)
| 336 | self._debounced_callback(event) |
| 337 | |
| 338 | def on_deleted(self, event): |
| 339 | if not event.is_directory and self._should_trigger(event.src_path): |
| 340 | self._debounced_callback(event) |
| 341 | |
| 342 | watch_path = Path(path) |
| 343 | if not watch_path.exists(): |
nothing calls this directly
no test coverage detected