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 58d083ab..fcd3e171 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -108,6 +108,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 @@ -133,7 +136,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") |