Path 1: 101 calls (1.0)

Style (101)

1def pop(self) -> Style:
2        """Pop last style and discard.
3
4        Returns:
5            Style: New current style (also available as stack.current)
6        """
7        self._stack.pop()
8        return self._stack[-1]