summaryrefslogtreecommitdiffstats
path: root/app/discover
diff options
context:
space:
mode:
Diffstat (limited to 'app/discover')
-rw-r--r--app/discover/clique_finder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/discover/clique_finder.py b/app/discover/clique_finder.py
index 2d845b7..47843e6 100644
--- a/app/discover/clique_finder.py
+++ b/app/discover/clique_finder.py
@@ -57,7 +57,7 @@ class CliqueFinder(Fetcher):
# clique type definition with environment=ANY
for clique_type in default_clique_types:
focal_point_type = clique_type['focal_point_type']
- if focal_point_type not in clique_types:
+ if focal_point_type not in self.clique_types_by_type:
self.clique_types_by_type[focal_point_type] = clique_type
return self.clique_types_by_type