diff options
| author | 2019-04-21 12:10:13 +1000 | |
|---|---|---|
| committer | 2019-04-21 12:10:13 +1000 | |
| commit | c2776d04222452523c4c2c49e227b02d79a5b5b7 (patch) | |
| tree | 1eb1dd64352a7e24bd0193319c3a29802a81a344 /bot/seasons/easter/egg_hunt/constants.py | |
| parent | Add return annotations. (diff) | |
Fix consistencies, address @fiskenslakt's comments.
Diffstat (limited to 'bot/seasons/easter/egg_hunt/constants.py')
| -rw-r--r-- | bot/seasons/easter/egg_hunt/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/easter/egg_hunt/constants.py b/bot/seasons/easter/egg_hunt/constants.py index 592235b2..3f3c3bbe 100644 --- a/bot/seasons/easter/egg_hunt/constants.py +++ b/bot/seasons/easter/egg_hunt/constants.py @@ -10,7 +10,7 @@ GUILD = bot.get_guild(Client.guild) class EggHuntSettings: start_time = int(os.environ["HUNT_START"]) - end_time = start_time + 172800 + end_time = start_time + 172800 # 48 hrs later windows = os.environ.get("HUNT_WINDOWS").split(',') or [] allowed_channels = [ Channels.seasonalbot_chat, |