Skip to content

Commit

Permalink
docs: Fix docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbjoernl committed Jun 7, 2024
1 parent 734a60c commit 313f2bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyaerocom/scripts/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def aeroval(
),
verbosity: Verbosity = typer.Option(Verbosity.ERROR, help="console logger level"),
):
"""Run an AeroVal experiment as described in a config file"""
"""Run an AeroVal experiment as described in a json config file"""

if config.suffix != ".json": # pragma:no cover
typer.echo(f"{config.suffix=} != '.json'")
Expand All @@ -96,12 +96,13 @@ def aeroval(


@main.command()
def getdata(
def getsampledata(
extract_dir: Path = typer.Option(
default="./data", help="Folder where data should be extracted", writable=True
),
verbosity: Verbosity = typer.Option(Verbosity.ERROR, help="console logger level"),
):
"""Downloads a minimal sample dataset."""
download_minimal_dataset(extract_dir_override=extract_dir)


Expand Down

0 comments on commit 313f2bd

Please sign in to comment.