Fix matches showing twice

clubs
Laurent 1 year ago
parent 8216a529d0
commit 7fb6c3ff3c
  1. 1
      tournaments/models/round.py

@ -51,7 +51,6 @@ class Round(models.Model):
def all_matches(self, hide_empty_matches):
matches = []
matches.extend(self.match_set.all())
matches.extend(self.get_matches_recursive(hide_empty_matches))
return matches

Loading…
Cancel
Save