Skip to content

Commit

Permalink
Updated helper strings for the cli
Browse files Browse the repository at this point in the history
  • Loading branch information
joostboon committed Feb 27, 2025
1 parent cc028af commit 2b8dc28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jafgen/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ def run(
# We set default to 0 here to make sure users don't get confused if they only put in days.
# If they don't set anything we have years default = 1 later to keep the same functionality.
years: Annotated[
int, typer.Argument(help="Number of years to simulate. Default is 1.")
int, typer.Argument(help="Number of years to simulate. If neither days nor years are provided, the default is 1 year.")
] = 0,
days: Annotated[
int, typer.Option(help="Number of years to simulate. Default is 1.")
int, typer.Option(help="Number of days to simulate. Default is 0.")
] = 0,
pre: Annotated[
str,
Expand Down

0 comments on commit 2b8dc28

Please sign in to comment.