Pop last style and discard. Returns: Style: New current style (also available as stack.current)
(self)
| 787 | self._stack.append(self._stack[-1] + style) |
| 788 | |
| 789 | def pop(self) -> Style: |
| 790 | class="st">"""Pop last style and discard. |
| 791 | |
| 792 | Returns: |
| 793 | Style: New current style (also available as stack.current) |
| 794 | class="st">""" |
| 795 | self._stack.pop() |
| 796 | return self._stack[-1] |
no outgoing calls