Pop the last renderhook from the stack.
(self)
| 850 | self._render_hooks.append(hook) |
| 851 | |
| 852 | def pop_render_hook(self) -> None: |
| 853 | """Pop the last renderhook from the stack.""" |
| 854 | with self._lock: |
| 855 | self._render_hooks.pop() |
| 856 | |
| 857 | def __enter__(self) -> "Console": |
| 858 | """Own context manager to enter buffer context.""" |