(self, chars_len: int, width: int)
| 103 | yield rule_text |
| 104 | |
| 105 | def _rule_line(self, chars_len: int, width: int) -> Text: |
| 106 | rule_text = Text(self.characters * ((width // chars_len) + 1), self.style) |
| 107 | rule_text.truncate(width) |
| 108 | rule_text.plain = set_cell_size(rule_text.plain, width) |
| 109 | return rule_text |
| 110 | |
| 111 | def __rich_measure__( |
| 112 | self, console: Console, options: ConsoleOptions |
no test coverage detected