From 3ea92c0d6e26f8b8ee654848796d6d1f1ec4eef5 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Tue, 4 Jun 2019 11:09:40 -0300 Subject: [PATCH] pylint --- torba/client/basenetwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/client/basenetwork.py b/torba/client/basenetwork.py index 6d0f6a9ca..fa1f934c3 100644 --- a/torba/client/basenetwork.py +++ b/torba/client/basenetwork.py @@ -81,7 +81,7 @@ class BaseNetwork: await client.create_connection(timeout) await client.send_request('server.banner') return client - except (asyncio.TimeoutError, asyncio.CancelledError) as error: + except (asyncio.TimeoutError, asyncio.CancelledError): if not client.is_closing(): client.abort() raise