Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solution_runner/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@click.group(context_settings=CONTEXT)
def cli() -> click.Group:
"""
Main CLI holding all Advent of Code related commands.
Make your Advent of Code journey easier.

For more information about Advent of Code, see https://adventofcode.com.
"""
Expand Down
4 changes: 2 additions & 2 deletions solution_runner/commands/setup_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
type=click.IntRange(consts.FIRST_AOC_YEAR, _default_year),
default=_default_year,
show_default=f"last year: {_default_year}",
help="year of puzzle setting up solution for",
help="year of puzzle to set up solution for",
)
@click.option(
"-d",
"--day",
type=consts.ADVENT_DAYS_RANGE,
required=True,
help="day of puzzle setting up solution for",
help="day of puzzle to set up solution for",
)
@click.option(
"--use-cache/--ignore-cache",
Expand Down
2 changes: 1 addition & 1 deletion solution_runner/commands/submit_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def _parse_result(result: str) -> tuple[str, bool]:
type=click.IntRange(consts.FIRST_AOC_YEAR, _default_year),
default=_default_year,
show_default=f"last year: {_default_year}",
help="year of puzzle setting up solution for",
help="year of puzzle to submit",
)
@click.option(
"-d",
Expand Down