Functions
get_cli_output
Create a standardized CLIOutput instance for command functions.
This helper ensures consistent CLI…
get_cli_output
def get_cli_output(quiet: bool = False, verbose: bool = False) -> CLIOutput
Create a standardized CLIOutput instance for command functions.
This helper ensures consistent CLIOutput instantiation across all commands, making it easy to pass quiet/verbose flags and maintain consistent behavior.
Parameters 2
| Name | Type | Default | Description |
|---|---|---|---|
quiet |
bool |
False |
Suppress non-critical output (default: False) |
verbose |
bool |
False |
Show detailed output (default: False) |
Returns
CLIOutput instance configured with the specified parametersCLIOutput
—