Module

cli.helpers.cli_output

Helper for creating standardized CLIOutput instances.

Functions

get_cli_output
Create a standardized CLIOutput instance for command functions. This helper ensures consistent CLI…
2 CLIOutput
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

CLIOutput instance configured with the specified parameters