Skip to content

Commit

Permalink
otk: use help
Browse files Browse the repository at this point in the history
Setting the help makes sure the command actually show up in the help
text.

Signed-off-by: Simon de Vlieger <[email protected]>
  • Loading branch information
supakeen committed May 30, 2024
1 parent fde7b8f commit ed16343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otk/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def parser_create() -> argparse.Namespace:
# get a subparser action
subparsers = parser.add_subparsers(dest="command", required=True, metavar="command")

parser_compile = subparsers.add_parser("compile", description="")
parser_compile = subparsers.add_parser("compile", help="Compile an omnifest.")
parser_compile.add_argument(
"input",
metavar="INPUT",
Expand Down

0 comments on commit ed16343

Please sign in to comment.