Remove unnecessary test to show scores

clubs
Laurent 1 year ago
parent 604432bdbf
commit c32abf7da8
  1. 7
      tournaments/models/match.py

@ -288,8 +288,7 @@ class LiveMatch:
return True
def should_show_scores(self):
if self.started:
for team in self.teams:
if len(team.scores) > 0:
return True
for team in self.teams:
if len(team.scores) > 0:
return True
return False

Loading…
Cancel
Save