Print a fancy header.
(title: str, width: int = 80)
| 43 | |
| 44 | |
| 45 | def print_header(title: str, width: int = 80): |
| 46 | """Print a fancy header.""" |
| 47 | print("\n" + "=" * width) |
| 48 | print(f"{title:^{width}}") |
| 49 | print("=" * width) |
| 50 | |
| 51 | |
| 52 | def print_savings_bar(label: str, percentage: float, width: int = 50): |
no outgoing calls
no test coverage detected
searching dependent graphs…