Method: rich.progress.TaskProgressColumn.__init__
Calls: 15, Exceptions: 0, Paths: 1Back
Path 1: 15 calls (1.0)
'[progress.percentage]{task.percentage:>3.0f}%' (15)
'' (15)
'none' (15)
'left' (15)
True (15)
None (15)
None (15)
False (14) True (1)
1def __init__(
2 self,
3 text_format: str = "[progress.percentage]{task.percentage:>3.0f}%",
4 text_format_no_percentage: str = "",
5 style: StyleType = "none",
6 justify: JustifyMethod = "left",
7 markup: bool = True,
8 highlighter: Optional[Highlighter] = None,
9 table_column: Optional[Column] = None,
10 show_speed: bool = False,
11 ) -> None:
12
13 self.text_format_no_percentage = text_format_no_percentage
14 self.show_speed = show_speed
15 super().__init__(
16 text_format=text_format,
17 style=style,
18 justify=justify,
19 markup=markup,
20 highlighter=highlighter,
21 table_column=table_column,
22 )