From 7b92e361154411f02641b99ba12b5ce976a839c8 Mon Sep 17 00:00:00 2001 From: Raz Date: Fri, 8 Nov 2024 12:13:53 +0100 Subject: [PATCH] fix error w gs team --- tournaments/models/group_stage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tournaments/models/group_stage.py b/tournaments/models/group_stage.py index 863abea..7572b5a 100644 --- a/tournaments/models/group_stage.py +++ b/tournaments/models/group_stage.py @@ -197,6 +197,7 @@ class GroupStageTeam: self.display_set_difference = False self.weight = team_registration.weight self.team_registration = team_registration + self.walk_out = team_registration.walk_out def wins_losses(self): return f"{self.wins}/{self.losses}"