Skip to content

Commit 8acdf3d

Browse files
authored
Merge pull request #25 from katzuv/hotfix/fix-cli-help
Fix CLI help strings
2 parents 898c3e8 + 17c52df commit 8acdf3d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

solution_runner/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@click.group(context_settings=CONTEXT)
1010
def cli() -> click.Group:
1111
"""
12-
Main CLI holding all Advent of Code related commands.
12+
Make your Advent of Code journey easier.
1313
1414
For more information about Advent of Code, see https://adventofcode.com.
1515
"""

solution_runner/commands/setup_command.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
type=click.IntRange(consts.FIRST_AOC_YEAR, _default_year),
2020
default=_default_year,
2121
show_default=f"last year: {_default_year}",
22-
help="year of puzzle setting up solution for",
22+
help="year of puzzle to set up solution for",
2323
)
2424
@click.option(
2525
"-d",
2626
"--day",
2727
type=consts.ADVENT_DAYS_RANGE,
2828
required=True,
29-
help="day of puzzle setting up solution for",
29+
help="day of puzzle to set up solution for",
3030
)
3131
@click.option(
3232
"--use-cache/--ignore-cache",

solution_runner/commands/submit_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _parse_result(result: str) -> tuple[str, bool]:
3232
type=click.IntRange(consts.FIRST_AOC_YEAR, _default_year),
3333
default=_default_year,
3434
show_default=f"last year: {_default_year}",
35-
help="year of puzzle setting up solution for",
35+
help="year of puzzle to submit",
3636
)
3737
@click.option(
3838
"-d",

0 commit comments

Comments
 (0)