diff options
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/constants.py b/bot/constants.py index e313e086..c696b202 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -63,7 +63,7 @@ class AdventOfCode:      staff_leaderboard_id = environ.get("AOC_STAFF_LEADERBOARD_ID", "")      # Other Advent of Code constants -    ignored_days = [day for day in environ.get("AOC_IGNORED_DAYS", "").split(",")] +    ignored_days = environ.get("AOC_IGNORED_DAYS", "").split(",")      leaderboard_displayed_members = 10      leaderboard_cache_expiry_seconds = 1800      year = int(environ.get("AOC_YEAR", datetime.utcnow().year)) | 
