Method: rich.padding.Padding.__init__
Calls: 1772, Exceptions: 0, Paths: 1Back
Path 1: 1772 calls (1.0)
Text (575) '' (174) Pretty (92) 'foo' (83) 'Averlongwordgoeshere' (66) 'bar' (64) 'banana pancakes' (59) 'baz' (58) ProgressBar (52) 'Coffee' (44)
(0, 1, 0, 1) (733) (0, 1, 0, 0) (448) (0, 0, 0, 0) (284) (1, 1, 1, 1) (228) (1, 1, 0, 1) (24) (1, 1, 0, 0) (24) (0, 0, 0, 1) (21) (1, 1, 1, 0) (3) (1,...
'none' (1770) Style (2)
True (1770) False (2)
1def __init__(
2 self,
3 renderable: "RenderableType",
4 pad: "PaddingDimensions" = (0, 0, 0, 0),
5 *,
6 style: Union[str, Style] = "none",
7 expand: bool = True,
8 ):
9 self.renderable = renderable
10 self.top, self.right, self.bottom, self.left = self.unpack(pad)
11 self.style = style
12 self.expand = expand