Skip to content

Commit

Permalink
add help str to gcn-filename option
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisNe committed Feb 10, 2025
1 parent c978add commit 86b1850
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nuztf/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ def main(
str, typer.Argument(..., help="Name of the neutrino, e.g. `IC200530A`")
],
logging_level: Annotated[str, typer.Option("--logging-level", "-l")] = "INFO",
gcn_filename: Annotated[str, typer.Option("--gcn-filename", "-f")] = None,
gcn_filename: Annotated[
str,
typer.Option(
"--gcn-filename",
"-f",
help="Filename to write GCN to, if None (default) print to console",
),
] = None,
):

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

0 comments on commit 86b1850

Please sign in to comment.