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 95e73fc commit d5eb6daCopy full SHA for d5eb6da
1 file changed
taskiq/cli/watcher.py
@@ -40,7 +40,7 @@ def dispatch(self, event: FileSystemEvent) -> None:
40
if event.event_type in {"opened", "closed", "closed_no_write"}:
41
return
42
43
- if ".git" in event.src_path:
+ if ".git" in event.src_path or "__pycache__" in event.src_path:
44
45
46
try:
0 commit comments