Print a message to stdout.
(self, s: str, **kwargs)
| 83 | click.echo(output, file=self.logfile) |
| 84 | |
| 85 | def echo(self, s: str, **kwargs) -> None: |
| 86 | """Print a message to stdout.""" |
| 87 | self.log_output(s) |
| 88 | click.secho(s, **kwargs) |
| 89 | |
| 90 | def get_output_margin(self, status: str | None = None) -> int: |
| 91 | """Get the output margin for prompt, footer, timing, and status.""" |
no test coverage detected