Print a formatted step header.
(step_num: int, total: int, description: str)
| 75 | |
| 76 | |
| 77 | def _print_step(step_num: int, total: int, description: str) -> None: |
| 78 | """Print a formatted step header.""" |
| 79 | print(f"\n[Step {step_num}/{total}] {description}") |
| 80 | print("-" * 80) |
| 81 | |
| 82 | |
| 83 | def _run_command( |
no outgoing calls
no test coverage detected