From 9739db7e4fa4628e8d07fef4f0c0221e01753a15 Mon Sep 17 00:00:00 2001 From: Vladimir Penzin Date: Mon, 27 Nov 2023 02:52:21 +0500 Subject: [PATCH] Deleted prints in code --- asyncio_telnet/asyncio_telnet.py | 1 - 1 file changed, 1 deletion(-) diff --git a/asyncio_telnet/asyncio_telnet.py b/asyncio_telnet/asyncio_telnet.py index 4b771ad..ad91ade 100644 --- a/asyncio_telnet/asyncio_telnet.py +++ b/asyncio_telnet/asyncio_telnet.py @@ -101,7 +101,6 @@ async def read_until_eof(self, read_timeout=None, decode=False): timer = 0 response = b'' read_timeout = read_timeout or self.read_timeout - print('read_timeout', read_timeout) if self.mode == 'smart' and self.eor_support is None: await self.write(IAC + WILL + EOR) while True: