Path 1: 101 calls (1.0)
→ style Style (101)
1def push(self, style: Style) -> None: 2 """Push a new style on to the stack. 3 4 Args: 5 style (Style): New style to combine with current style. 6 """ 7 self._stack.append(self._stack[-1] + style)