Skip to content

Commit

Permalink
add a description for the class name argument
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Jan 16, 2024
1 parent d7d6e8b commit a33a395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bmipy/_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def main(argv: tuple[str, ...] | None = None) -> int:
"""Render a template BMI implementation in Python for class NAME."""
parser = argparse.ArgumentParser()
parser.add_argument("--version", action="version", version=f"bmipy {__version__}")
parser.add_argument("name")
parser.add_argument("name", metavar="NAME", help="Name of the generated BMI class")

group = parser.add_mutually_exclusive_group()
group.add_argument(
Expand Down

0 comments on commit a33a395

Please sign in to comment.