(self, path: str)
| 313 | self._debounce = 0.5 # 500ms debounce |
| 314 | |
| 315 | def _should_trigger(self, path: str) -> bool: |
| 316 | if not self.patterns: |
| 317 | return True |
| 318 | return any(Path(path).match(p) for p in self.patterns) |
| 319 | |
| 320 | def _debounced_callback(self, event): |
| 321 | now = time.time() |
no outgoing calls
no test coverage detected