Method: rich.progress.BarColumn.__init__
Calls: 21, Exceptions: 0, Paths: 1Back
Path 1: 21 calls (1.0)
40 (18) None (2) 100 (1)
'bar.back' (21)
'bar.complete' (21)
'bar.finished' (21)
'bar.pulse' (21)
None (21)
1def __init__(
2 self,
3 bar_width: Optional[int] = 40,
4 style: StyleType = "bar.back",
5 complete_style: StyleType = "bar.complete",
6 finished_style: StyleType = "bar.finished",
7 pulse_style: StyleType = "bar.pulse",
8 table_column: Optional[Column] = None,
9 ) -> None:
10 self.bar_width = bar_width
11 self.style = style
12 self.complete_style = complete_style
13 self.finished_style = finished_style
14 self.pulse_style = pulse_style
15 super().__init__(table_column=table_column)