diff options
author | 2020-03-31 16:18:59 +0200 | |
---|---|---|
committer | 2020-03-31 16:18:59 +0200 | |
commit | 00af207de3087a41270f216ad86e06ba7dbf9d42 (patch) | |
tree | d317e2c66a658e2311350a592803eb88f7112312 /bot/exts/christmas/adventofcode.py | |
parent | Deseasonify: resolve current season w.r.t. month override (diff) |
Refactor: capitalize Month enum members
Co-authored-by: MarkKoz <[email protected]>
Diffstat (limited to 'bot/exts/christmas/adventofcode.py')
-rw-r--r-- | bot/exts/christmas/adventofcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/christmas/adventofcode.py b/bot/exts/christmas/adventofcode.py index 8f7aa13b..cc3923c8 100644 --- a/bot/exts/christmas/adventofcode.py +++ b/bot/exts/christmas/adventofcode.py @@ -153,7 +153,7 @@ class AdventOfCode(commands.Cog): status_coro = countdown_status(self.bot) self.status_task = self.bot.loop.create_task(status_coro) - @in_month(Month.december) + @in_month(Month.DECEMBER) @commands.group(name="adventofcode", aliases=("aoc",)) @override_in_channel(AOC_WHITELIST) async def adventofcode_group(self, ctx: commands.Context) -> None: |