We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d932f37 commit 64638abCopy full SHA for 64638ab
bot/exts/advent_of_code/_helpers.py
@@ -158,7 +158,7 @@ def _parse_raw_leaderboard_data(raw_leaderboard_data: dict) -> dict:
158
159
# Create summary stats for the stars completed for each day of the event.
160
daily_stats = {}
161
- for day in range(1, 26):
+ for day in range(1, DAYS_THIS_YEAR + 1):
162
day = str(day)
163
star_one = len(star_results.get((day, "1"), []))
164
star_two = len(star_results.get((day, "2"), []))
0 commit comments