Skip to content

Commit

Permalink
Merge pull request #910 from glubsy/757_fix
Browse files Browse the repository at this point in the history
Fix refs appearing in dupes-only view
  • Loading branch information
arsenetar committed Jun 23, 2021
2 parents 4641bd6 + a51f263 commit 2f8d603
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions core/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,21 @@ def mark_none(self):

# ---Private
def __get_dupe_list(self):
if self.__dupes is None:
self.__dupes = flatten(group.dupes for group in self.groups)
if None in self.__dupes:
# This is debug logging to try to figure out #44
logging.warning(
"There is a None value in the Results' dupe list. dupes: %r groups: %r",
self.__dupes,
self.groups,
)
if self.__filtered_dupes:
self.__dupes = [
dupe for dupe in self.__dupes if dupe in self.__filtered_dupes
]
sd = self.__dupes_sort_descriptor
if sd:
self.sort_dupes(sd[0], sd[1], sd[2])
self.__dupes = flatten(group.dupes for group in self.groups)
if None in self.__dupes:
# This is debug logging to try to figure out #44
logging.warning(
"There is a None value in the Results' dupe list. dupes: %r groups: %r",
self.__dupes,
self.groups,
)
if self.__filtered_dupes:
self.__dupes = [
dupe for dupe in self.__dupes if dupe in self.__filtered_dupes
]
sd = self.__dupes_sort_descriptor
if sd:
self.sort_dupes(sd[0], sd[1], sd[2])
return self.__dupes

def __get_groups(self):
Expand Down

0 comments on commit 2f8d603

Please sign in to comment.