(name: str)
| 831 | |
| 832 | |
| 833 | def _print_section(name: str) -> None: |
| 834 | import click as _click |
| 835 | |
| 836 | _typer.echo() |
| 837 | _typer.echo(_click.style(f" {name}", bold=True)) |
| 838 | _typer.echo(_click.style(f" {'─' * 38}", fg="bright_black")) |
| 839 | |
| 840 | |
| 841 | def _print_error(msg: str) -> None: |