|
|
|
@ -197,6 +197,7 @@ class GroupStageTeam: |
|
|
|
self.display_set_difference = False |
|
|
|
self.display_set_difference = False |
|
|
|
self.weight = team_registration.weight |
|
|
|
self.weight = team_registration.weight |
|
|
|
self.team_registration = team_registration |
|
|
|
self.team_registration = team_registration |
|
|
|
|
|
|
|
self.qualified = team_registration.qualified |
|
|
|
|
|
|
|
|
|
|
|
def wins_losses(self): |
|
|
|
def wins_losses(self): |
|
|
|
return f"{self.wins}/{self.losses}" |
|
|
|
return f"{self.wins}/{self.losses}" |
|
|
|
@ -241,4 +242,5 @@ class GroupStageTeam: |
|
|
|
"diff": self.formatted_diff(), |
|
|
|
"diff": self.formatted_diff(), |
|
|
|
"weight": self.weight, |
|
|
|
"weight": self.weight, |
|
|
|
"match_count": self.match_count(), |
|
|
|
"match_count": self.match_count(), |
|
|
|
|
|
|
|
"qualified": self.qualified, |
|
|
|
} |
|
|
|
} |
|
|
|
|