Print a formatted section header.
(title: str)
| 68 | |
| 69 | |
| 70 | def _print_section(title: str) -> None: |
| 71 | """Print a formatted section header.""" |
| 72 | print("\n" + "=" * 80) |
| 73 | print(f" {title}") |
| 74 | print("=" * 80 + "\n") |
| 75 | |
| 76 | |
| 77 | def _print_step(step_num: int, total: int, description: str) -> None: |
no outgoing calls
no test coverage detected