Method: rich.style.Style.__rich_repr__
Calls: 48, Exceptions: 0, Paths: 2Back
Path 1: 47 calls (0.98)
('dim', None, None) (47) ('italic', None, None) (47) ('underline', None, None) (47) ('blink2', None, None) (47) ('conceal', None, None) (47) ('strike'...
1def __rich_repr__(self) -> Result:
2 yield "color", self.color, None
3 yield "bgcolor", self.bgcolor, None
4 yield "bold", self.bold, None,
5 yield "dim", self.dim, None,
6 yield "italic", self.italic, None
7 yield "underline", self.underline, None,
8 yield "blink", self.blink, None
9 yield "blink2", self.blink2, None
10 yield "reverse", self.reverse, None
11 yield "conceal", self.conceal, None
12 yield "strike", self.strike, None
13 yield "underline2", self.underline2, None
14 yield "frame", self.frame, None
15 yield "encircle", self.encircle, None
16 yield "link", self.link, None
17 if self._meta:
18 yield "meta", self.meta
Path 2: 1 calls (0.02)
('color', None, None) (1) ('bgcolor', None, None) (1) ('bold', True, None) (1) ('dim', None, None) (1) ('italic', None, None) (1) ('underline', None, ...
1def __rich_repr__(self) -> Result:
2 yield "color", self.color, None
3 yield "bgcolor", self.bgcolor, None
4 yield "bold", self.bold, None,
5 yield "dim", self.dim, None,
6 yield "italic", self.italic, None
7 yield "underline", self.underline, None,
8 yield "blink", self.blink, None
9 yield "blink2", self.blink2, None
10 yield "reverse", self.reverse, None
11 yield "conceal", self.conceal, None
12 yield "strike", self.strike, None
13 yield "underline2", self.underline2, None
14 yield "frame", self.frame, None
15 yield "encircle", self.encircle, None
16 yield "link", self.link, None
17 if self._meta:
18 yield "meta", self.meta