bug: remove a missed print statement.

This commit is contained in:
UpstreamData
2023-02-15 14:31:32 -07:00
parent 996ab58252
commit 46e7f9a569

View File

@@ -190,7 +190,6 @@ If you are sure you want to use this command please use API.send_command("{comma
d = await asyncio.wait_for(reader.read(4096), timeout=timeout)
if not d:
break
print("hello", d)
ret_data += d
except (asyncio.CancelledError, asyncio.TimeoutError) as e:
raise e