diff options
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
-rw-r--r-- | bot/seasons/christmas/adventofcode.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py index 4c766703..5a34d608 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -100,6 +100,9 @@ async def day_countdown(bot: commands.Bot): class AdventOfCode: + """ + Advent of Code festivities! Ho Ho Ho! + """ def __init__(self, bot: commands.Bot): self.bot = bot @@ -125,7 +128,7 @@ class AdventOfCode: @commands.group(name="adventofcode", aliases=("aoc",), invoke_without_command=True) async def adventofcode_group(self, ctx: commands.Context): """ - Advent of Code festivities! Ho Ho Ho! + All of the Advent of Code commands """ await ctx.invoke(self.bot.get_command("help"), "adventofcode") |