Skip to content

Commit

Permalink
Touch up help text
Browse files Browse the repository at this point in the history
  • Loading branch information
camcaswell committed Jul 8, 2022
1 parent 1f5c06d commit 56015c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bot/exts/summer_aoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 56015c4

Please sign in to comment.