remove unused code

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2019-11-12 09:22:28 +01:00 committed by Darko Poljak
parent 6e9e9ad557
commit 831bfc822b
1 changed files with 0 additions and 3 deletions

View File

@ -173,9 +173,6 @@ async def handle_log_client(reader, writer):
return
data_size = struct.unpack('>L', chunk)[0]
data = bytearray(data_size)
view = memoryview(data)
data_pending = data_size
data = await reader.read(data_size)
obj = pickle.loads(data)