(self, task: "Task")
| 633 | super().__init__(table_column=table_column or Column(no_wrap=True)) |
| 634 | |
| 635 | def render(self, task: "Task") -> Text: |
| 636 | _text = self.text_format.format(task=task) |
| 637 | if self.markup: |
| 638 | text = Text.from_markup(_text, style=self.style, justify=self.justify) |
| 639 | else: |
| 640 | text = Text(_text, style=self.style, justify=self.justify) |
| 641 | if self.highlighter: |
| 642 | self.highlighter.highlight(text) |
| 643 | return text |
| 644 | |
| 645 | |
| 646 | class BarColumn(ProgressColumn): |