Print formatted section header.
(title: str)
| 62 | |
| 63 | |
| 64 | def _print_section(title: str) -> None: |
| 65 | """Print formatted section header.""" |
| 66 | print("\n" + "=" * 80) |
| 67 | print(f" {title}") |
| 68 | print("=" * 80 + "\n") |
| 69 | |
| 70 | |
| 71 | # ============================================================================ |
no outgoing calls
no test coverage detected