From bb891e5b4906f5d713157cb063753a8d3dcd30c4 Mon Sep 17 00:00:00 2001 From: cuom1999 Date: Fri, 31 May 2024 01:38:25 -0500 Subject: [PATCH] Fix missing arg --- judge/views/contests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/judge/views/contests.py b/judge/views/contests.py index 718e43f..1fadb7b 100644 --- a/judge/views/contests.py +++ b/judge/views/contests.py @@ -1057,7 +1057,9 @@ def make_contest_ranking_profile( ) -def base_contest_ranking_list(contest, problems, queryset, show_final=False): +def base_contest_ranking_list( + contest, problems, queryset, show_final=False, extra_participation=None +): participation_fields = [ field.name for field in ContestParticipation._meta.get_fields()