From a1becd845526ca0e9f380f70acb0f53df08cdffc Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 28 Jul 2025 14:57:50 +0200 Subject: [PATCH] fix claude issue --- tournaments/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tournaments/views.py b/tournaments/views.py index 1108108..e2081c4 100644 --- a/tournaments/views.py +++ b/tournaments/views.py @@ -295,9 +295,9 @@ def tournament(request, tournament_id): .prefetch_related( 'rounds', 'rounds__children', - 'rounds__matches__team_scores__team_registration__player_registrations__player', - 'group_stages__matches__team_scores__team_registration__player_registrations__player', - 'rounds__children__matches__team_scores__team_registration__player_registrations__player' + 'rounds__matches__team_scores__team_registration__player_registrations', + 'group_stages__matches__team_scores__team_registration__player_registrations', + 'rounds__children__matches__team_scores__team_registration__player_registrations' ), pk=tournament_id )