We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9375c6 commit cf43f12Copy full SHA for cf43f12
src/watchdog/observers/read_directory_changes.py
@@ -44,7 +44,7 @@ def __init__(
44
super().__init__(event_queue, watch, timeout=timeout, event_filter=event_filter)
45
self._lock = threading.Lock()
46
self._whandle: HANDLE | None = None
47
- self._watched_files = {}
+ self._watched_files: dict[str, str] = {}
48
49
def on_thread_start(self) -> None:
50
watch_path = self.watch.path
0 commit comments