(self, text: str)
| 523 | self.encoding = get_option("display.encoding") |
| 524 | |
| 525 | def len(self, text: str) -> int: |
| 526 | return len(text) |
| 527 | |
| 528 | def justify(self, texts: Any, max_len: int, mode: str = "right") -> list[str]: |
| 529 | """ |
no outgoing calls
no test coverage detected