Coverage for / home / runner / work / bijux-cli / bijux-cli / src / bijux_cli / cli / core / help_text.py: 100%
7 statements
« prev ^ index » next coverage.py v7.13.2, created at 2026-01-26 17:59 +0000
« prev ^ index » next coverage.py v7.13.2, created at 2026-01-26 17:59 +0000
1# SPDX-License-Identifier: Apache-2.0
2# Copyright © 2025 Bijan Mousavi
4"""Help text strings for CLI commands."""
6from __future__ import annotations
8HELP_QUIET = "Suppress normal output; exit code still indicates success/failure."
9HELP_NO_PRETTY = "Disable pretty-printing (indentation) in JSON/YAML output."
10HELP_FORMAT = "Machine-readable output format (json|yaml); defaults to json."
11HELP_LOG_LEVEL = "Set logging level (trace|debug|info). Example: --log-level debug."
12HELP_FORMAT_HELP = "Output format: human (default), json, yaml."
14__all__ = [
15 "HELP_QUIET",
16 "HELP_NO_PRETTY",
17 "HELP_FORMAT",
18 "HELP_LOG_LEVEL",
19 "HELP_FORMAT_HELP",
20]