Print a formatted header for the session.
(session_num: int, is_initializer: bool)
| 223 | |
| 224 | |
| 225 | def print_session_header(session_num: int, is_initializer: bool) -> None: |
| 226 | """Print a formatted header for the session.""" |
| 227 | session_type = "INITIALIZER" if is_initializer else "CODING AGENT" |
| 228 | |
| 229 | print("\n" + "=" * 70) |
| 230 | print(f" SESSION {session_num}: {session_type}") |
| 231 | print("=" * 70) |
| 232 | print() |
| 233 | |
| 234 | |
| 235 | def print_progress_summary(project_dir: Path) -> None: |
no outgoing calls
no test coverage detected