Method: rich.progress.TextColumn.__init__
Calls: 36, Exceptions: 0, Paths: 1Back
Path 1: 36 calls (1.0)
'[progress.description]{task.description}' (18) '[progress.percentage]{task.percentage:>3.0f}%' (15) '[b]foo' (1) '[b]bar' (1) '{task.description}' (1...
'none' (36)
'left' (36)
True (35) False (1)
None (35) NullHighlighter (1)
None (36)
1def __init__(
2 self,
3 text_format: str,
4 style: StyleType = "none",
5 justify: JustifyMethod = "left",
6 markup: bool = True,
7 highlighter: Optional[Highlighter] = None,
8 table_column: Optional[Column] = None,
9 ) -> None:
10 self.text_format = text_format
11 self.justify: JustifyMethod = justify
12 self.style = style
13 self.markup = markup
14 self.highlighter = highlighter
15 super().__init__(table_column=table_column or Column(no_wrap=True))