(self, event)
| 332 | self._debounced_callback(event) |
| 333 | |
| 334 | def on_created(self, event): |
| 335 | if not event.is_directory and self._should_trigger(event.src_path): |
| 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): |
nothing calls this directly
no test coverage detected