Print a styled separator line
(self, char="═", length=79, color=Colors.CYAN)
| 158 | print(banner) |
| 159 | |
| 160 | def print_separator(self, char="═", length=79, color=Colors.CYAN): |
| 161 | """Print a styled separator line""" |
| 162 | print(f"{color}{char * length}{Colors.ENDC}") |
| 163 | |
| 164 | def print_status(self, message: str, status_type: str = "info"): |
| 165 | """Print status message with appropriate styling""" |
no outgoing calls
no test coverage detected