From 56015c43a59f3ddcf4d3e1505f10470490bcf855 Mon Sep 17 00:00:00 2001 From: Cam Caswell Date: Thu, 7 Jul 2022 20:38:37 -0400 Subject: [PATCH] Touch up help text --- bot/exts/summer_aoc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bot/exts/summer_aoc.py b/bot/exts/summer_aoc.py index a239838..d5c9b22 100644 --- a/bot/exts/summer_aoc.py +++ b/bot/exts/summer_aoc.py @@ -111,7 +111,10 @@ async def info(self, ctx: commands.Context) -> None: @summer_aoc_group.command(name="start") async def start(self, ctx: commands.Context, year: int, day_interval: int, post_time: int = 0) -> None: - """Start the Summer AoC event. To specify a starting day other than `1`, use the `force` command.""" + """ + Start the Summer AoC event. + To specify a starting day other than `1`, use the `force` command. + """ if not FIRST_YEAR <= year <= LAST_YEAR: raise commands.BadArgument(f"Year must be between {FIRST_YEAR} and {LAST_YEAR}, inclusive")