Print results section header
(self)
| 656 | self.print_separator("─", 79, Colors.CYAN) |
| 657 | |
| 658 | def print_results_header(self): |
| 659 | """Print results section header""" |
| 660 | header = f""" |
| 661 | {Colors.BOLD}{Colors.OKGREEN}╔═══════════════════════════════════════════════════════════════════════════════╗ |
| 662 | ║ PROCESSING RESULTS ║ |
| 663 | ╚═══════════════════════════════════════════════════════════════════════════════╝{Colors.ENDC} |
| 664 | """ |
| 665 | print(header) |
| 666 | |
| 667 | def print_error_box(self, title: str, error_msg: str): |
| 668 | """Print formatted error box""" |