Leave buffer context, and render content if required.
(self)
| 815 | self._buffer_index += 1 |
| 816 | |
| 817 | def _exit_buffer(self) -> None: |
| 818 | """Leave buffer context, and render content if required.""" |
| 819 | self._buffer_index -= 1 |
| 820 | self._check_buffer() |
| 821 | |
| 822 | def set_live(self, live: "Live") -> bool: |
| 823 | """Set Live instance. Used by Live context manager (no need to call directly). |
no test coverage detected