Skip to content

Commit 8c19323

Browse files
committed
add note about distinct
1 parent e2650e5 commit 8c19323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sde_collections/models/delta_patterns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def is_most_distinctive_pattern(self, url) -> bool:
6363
.filter(models.Q(delta_urls__url=url.url) | models.Q(curated_urls__url=url.url))
6464
.exclude(id=self.id)
6565
.distinct()
66-
)
66+
) # TODO: does this have a distinct urls, or distinct model objects.
6767

6868
# If any matching pattern has a smaller URL set, don't apply
6969
for pattern in matching_patterns:

0 commit comments

Comments
 (0)