Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tyilo authored Jan 5, 2024
1 parent 7674039 commit 239cb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion games/achievements.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Top10Achievement(Achievement):

def has_achieved(user):
current_season = Season.current_season()
for i in range(1, current_season.number): # Exclude current season
for i in range(1, current_season.number): # Exclude current season
top10 = (
PlayerStat.objects.filter(season_number=i)
.order_by("-total_sips")[:10]
Expand Down

0 comments on commit 239cb0c

Please sign in to comment.