Skip to content

Commit

Permalink
Fixing CLI description printout (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
opotowsky authored Dec 27, 2023
1 parent 1d6c7ad commit dc78053
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions armi/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def print_help(self, file=None):
class ArmiCLI:
"""
ARMI CLI -- The main entry point into ARMI. There are various commands
available, to get help for the individual commands, run again with
`<command> --help`. Generically, the CLI implements functions that already
exists within ARMI.
available. To get help for the individual commands, run again with
`<command> --help`. Typically, the CLI implements functions that already
exist within ARMI.
.. impl:: The basic ARMI CLI, for running a simulation.
:id: I_ARMI_CLI_CS
Expand All @@ -128,7 +128,7 @@ def __init__(self):

parser = ArmiParser(
prog=context.APP_NAME,
description=self.__doc__,
description=self.__doc__.split(".. impl")[0],
usage="%(prog)s [-h] [-l | command [args]]",
)

Expand Down

0 comments on commit dc78053

Please sign in to comment.