Print a separator line, but only if the verbose flag is set.
()
| 153 | |
| 154 | |
| 155 | def print_separator() -> None: |
| 156 | """Print a separator line, but only if the verbose flag is set.""" |
| 157 | print_if_verbose("=" * 60, ANSI_SEPARATOR) |
| 158 | |
| 159 | |
| 160 | def print_key_values(key: str, values: list[str], length: int) -> None: |
no test coverage detected