We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c21ebf commit 372aa29Copy full SHA for 372aa29
taskiq/cli/watcher.py
@@ -37,10 +37,12 @@ def dispatch(self, event: FileSystemEvent) -> None:
37
"""
38
if event.is_directory:
39
return
40
- if event.event_type in {"opened", "closed"}:
+ if event.event_type in {"opened", "closed", "closed_no_write"}:
41
42
+
43
if ".git" in event.src_path:
44
45
46
try:
47
if self.gitignore and self.gitignore(event.src_path):
48
0 commit comments