(self)
| 94 | secho(f"{left}{sep*(width-2)}{right}", file=self.fd, color=TTY_COLORS) |
| 95 | |
| 96 | def print_thick_separator(self): |
| 97 | self.print_separator(left="\u255E", sep="\u2550", right="\u2561") |
| 98 | |
| 99 | def print_top_separator(self, **kwargs): |
| 100 | self.print_separator(left="\u2552", sep="\u2550", right="\u2555", **kwargs) |
no test coverage detected