fix: format stop command parser help text for better readability
Some checks failed
Python Lint Check / check-python (push) Waiting to run
Ansible Lint Check / check-ansible (push) Failing after 14s
Nix Format Check / check-format (push) Has been cancelled

This commit is contained in:
Menno van Leeuwen 2025-03-12 21:29:26 +01:00
parent 7bc9508e8e
commit bdf7487b45
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -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