Print a styled header.
(self, text: str)
| 81 | self.console = Console() |
| 82 | |
| 83 | def print_header(self, text: str): |
| 84 | """Print a styled header.""" |
| 85 | self.console.print(f"\n[bold blue]{text}[/bold blue]") |
| 86 | |
| 87 | def print_score(self, category: str, score: float, indent: int = 0): |
| 88 | """Print a score with proper formatting.""" |