fix: format stop command parser help text for better readability
This commit is contained in:
parent
7bc9508e8e
commit
bdf7487b45
@ -272,7 +272,9 @@ def main():
|
||||
# Stop command
|
||||
stop_parser = subparsers.add_parser("stop", help="Stop a Docker service")
|
||||
stop_group = stop_parser.add_mutually_exclusive_group(required=True)
|
||||
stop_group.add_argument("--all", action="store_true", help="Stop all running services")
|
||||
stop_group.add_argument(
|
||||
"--all", action="store_true", help="Stop all running services"
|
||||
)
|
||||
stop_group.add_argument("--service", dest="service", help="Service to stop")
|
||||
|
||||
# Restart command
|
||||
|
Loading…
x
Reference in New Issue
Block a user