Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
agyoungs committed Oct 30, 2024
1 parent 0f45fb2 commit 397672a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/rocker/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ def main():
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('image')
parser.add_argument('command', nargs='*', default='')
parser.add_argument('--config', help='Optional yaml file to handle command line arguments (except positional args) as a config file. This config will override any other command line arguments of the same name as the yaml keys (e.g. "--user-override-name" would have the key "user_override_name" in the config file)')
parser.add_argument('--config', help='''Optional yaml file to handle command line arguments
(except positional args) as a config file. This config will override any other command line
arguments of the same name as the yaml keys (e.g. "--user-override-name" would have the key
"user_override_name" in the config file)''')
parser.add_argument('--noexecute', action='store_true', help='Deprecated')
parser.add_argument('--nocache', action='store_true')
parser.add_argument('--nocleanup', action='store_true', help='do not remove the docker container when stopped')
Expand Down

0 comments on commit 397672a

Please sign in to comment.