From 46e7f9a569d061b8764ed1e385b024e3038dcfb7 Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Wed, 15 Feb 2023 14:31:32 -0700 Subject: [PATCH] bug: remove a missed print statement. --- pyasic/API/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyasic/API/__init__.py b/pyasic/API/__init__.py index a4feb574..6b997067 100644 --- a/pyasic/API/__init__.py +++ b/pyasic/API/__init__.py @@ -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