Skip to content

Commit

Permalink
Parser help text updates
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort committed Nov 2, 2023
1 parent b82b09c commit 41e7373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shinigami/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self) -> None:
scan = subparsers.add_parser('scan', parents=[common], help='terminate processes on one or more clusters')
scan.set_defaults(callable=Application.scan)
scan.add_argument('-c', '--clusters', nargs='+', required=True, help='cluster names to scan')
scan.add_argument('-i', '--ignore-nodes', nargs='*', default=[], help='ignore given nodes')
scan.add_argument('-i', '--ignore-nodes', nargs='*', default=[], help='ignore the given nodes')
scan.add_argument('-u', '--uid-whitelist', nargs='+', type=loads, default=[0], help='user IDs to scan')

# Subparser for the `Application.terminate` method
Expand Down

0 comments on commit 41e7373

Please sign in to comment.