Skip to content

Commit

Permalink
🐛📝 fix ozi-new project parser docs
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed May 23, 2024
1 parent 1217022 commit fdcd0cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ozi/new/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@
prog='ozi-new',
description=sys.modules[__name__].__doc__,
add_help=False,
usage='%(prog)s [options] [PKG-INFO required] [PKG-INFO optional] [PKG-INFO defaults] [defaults] target', # noqa: B950,E501,RUF100
usage='%(prog)s [options] | [positional args]', # noqa: B950,E501,RUF100
)
subparser = parser.add_subparsers(help='create new projects, sources, & tests', dest='new')
project_parser = subparser.add_parser(
'project',
aliases=['p'],
description='Create a new Python project with OZI.',
add_help=False,
prog='ozi-new project',
usage='%(prog)s [options] [PKG-INFO required] [PKG-INFO optional] [PKG-INFO defaults] [defaults] target', # noqa: B950,E501,RUF100
)
wrap_parser = subparser.add_parser(
'wrap',
Expand Down

0 comments on commit fdcd0cd

Please sign in to comment.