(self, event)
| 328 | error(f"FileWatch: callback error: {e}") |
| 329 | |
| 330 | def on_modified(self, event): |
| 331 | if not event.is_directory and self._should_trigger(event.src_path): |
| 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): |
nothing calls this directly
no test coverage detected