(self, *args, **kwargs)
| 112 | return f"{left}{infill*ljust} {text} {infill*rjust}{right}" |
| 113 | |
| 114 | def print_heading(self, *args, **kwargs): |
| 115 | secho(self.generate_heading(*args, **kwargs), file=self.fd, color=TTY_COLORS) |
| 116 | |
| 117 | def align(self, line, pos=-1, left="\u2502 ", right=" \u2502", width=None): |
| 118 | if width is None: |
no test coverage detected