mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
Remove memoryview wrapper for input data
Concatenating memoryview object to bytearray turns it into bytearray immediately anyway.
This commit is contained in:
@@ -88,7 +88,7 @@ def record(
|
||||
|
||||
return
|
||||
|
||||
input_data += memoryview(data)
|
||||
input_data += data
|
||||
|
||||
# save stdin unless paused or data is OSC response (e.g. \x1b]11;?\x07)
|
||||
if not pause_time and not (
|
||||
|
||||
Reference in New Issue
Block a user