mirror of https://github.com/Textualize/rich.git
Fix a merge issue
This commit is contained in:
parent
a55b1b8558
commit
96fc0a6cd5
|
@ -1970,11 +1970,6 @@ class Console:
|
||||||
del self._buffer[:]
|
del self._buffer[:]
|
||||||
return
|
return
|
||||||
with self._lock:
|
with self._lock:
|
||||||
if self.record:
|
|
||||||
with self._record_buffer_lock:
|
|
||||||
self._record_buffer.extend(self._buffer[:])
|
|
||||||
|
|
||||||
if self._buffer_index == 0:
|
|
||||||
if self.record:
|
if self.record:
|
||||||
with self._record_buffer_lock:
|
with self._record_buffer_lock:
|
||||||
self._record_buffer.extend(
|
self._record_buffer.extend(
|
||||||
|
@ -1985,6 +1980,7 @@ class Console:
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if self._buffer_index == 0:
|
||||||
if self.is_jupyter: # pragma: no cover
|
if self.is_jupyter: # pragma: no cover
|
||||||
from .jupyter import display
|
from .jupyter import display
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue