Skip to content

Commit

Permalink
add help string
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisNe committed Feb 8, 2025
1 parent 6f30fbf commit 46241dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuztf/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@


def main(
nu_name: str,
nu_name: Annotated[str, typer.Argument(..., help="Name of the neutrino, e.g. `IC200530A`")],
logging_level: Annotated[str, typer.Option("--logging-level", "-l")] = "INFO",
gcn_filename: str | None = None
gcn_filename: Annotated[str, typer.Option("--gcn-filename", "-f")] = None
):

logger = logging.getLogger("nuztf")
Expand Down

0 comments on commit 46241dd

Please sign in to comment.