Print a formatted header.
(title: str)
| 25 | ) |
| 26 | |
| 27 | def print_header(title: str): |
| 28 | """Print a formatted header.""" |
| 29 | print(f"\n{'='*60}") |
| 30 | print(f"🔍 {title}") |
| 31 | print(f"{'='*60}") |
| 32 | |
| 33 | def print_section(title: str): |
| 34 | """Print a formatted section header.""" |
no outgoing calls