(self, event)
| 1115 | self._schedule(event.src_path) |
| 1116 | |
| 1117 | def on_created(self, event): |
| 1118 | if event.is_directory: |
| 1119 | return |
| 1120 | if self._should_handle(event.src_path): |
| 1121 | self._schedule(event.src_path) |
| 1122 | |
| 1123 | def on_deleted(self, event): |
| 1124 | if event.is_directory: |
nothing calls this directly
no test coverage detected