Method: rich.columns.Columns.__init__
Calls: 1, Exceptions: 0, Paths: 1Back
Path 1: 1 calls (1.0)
list (1)
1 (1)
None (1)
False (1)
False (1)
False (1)
False (1)
None (1)
None (1)
1def __init__(
2 self,
3 renderables: Optional[Iterable[RenderableType]] = None,
4 padding: PaddingDimensions = (0, 1),
5 *,
6 width: Optional[int] = None,
7 expand: bool = False,
8 equal: bool = False,
9 column_first: bool = False,
10 right_to_left: bool = False,
11 align: Optional[AlignMethod] = None,
12 title: Optional[TextType] = None,
13 ) -> None:
14 self.renderables = list(renderables or [])
15 self.width = width
16 self.padding = padding
17 self.expand = expand
18 self.equal = equal
19 self.column_first = column_first
20 self.right_to_left = right_to_left
21 self.align: Optional[AlignMethod] = align
22 self.title = title