Skip to content

Commit 1879f09

Browse files
Linter fix.
1 parent 281c3e7 commit 1879f09

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bullet/problems/logic/results.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ def get_results(
2727

2828
return (
2929
ResultRow.objects.filter(id__in=rows)
30-
.order_by("-solved_count", "-solved_problems", "competition_time", "team__rank_international")
30+
.order_by(
31+
"-solved_count",
32+
"-solved_problems",
33+
"competition_time",
34+
"team__rank_international"
35+
)
3136
.select_related("team", "team__school", "team__venue", "team__venue__category")
3237
.prefetch_related("team__contestants", "team__contestants__grade")
3338
)

0 commit comments

Comments
 (0)