Fix a merge issue

This commit is contained in:
Darren Burns 2022-07-12 15:26:58 +01:00
parent a55b1b8558
commit 96fc0a6cd5
1 changed files with 7 additions and 11 deletions

View File

@ -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