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 e460ba4 commit a45b88dCopy full SHA for a45b88d
devel/management/commands/readlinks_inotify.py
@@ -59,7 +59,7 @@ def setup_notifier(self):
59
arches = Arch.objects.filter(agnostic=False)
60
repos = Repo.objects.all()
61
62
- arch_path_map = {arch: None for arch in arches}
+ arch_path_map = dict.fromkeys(arches)
63
all_paths = set()
64
total_paths = 0
65
for arch in arches:
devel/management/commands/reporead_inotify.py
@@ -72,7 +72,7 @@ def setup_notifier(self):
72
73
74
75
76
77
78
0 commit comments