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 return True
def should_show_scores(self): def should_show_scores(self):
if self.started: for team in self.teams:
for team in self.teams: if len(team.scores) > 0:
if len(team.scores) > 0: return True
return True
return False return False

Loading…
Cancel
Save