From 186de045b374664922661a95ecad970e37c70e7c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 10 Jan 2019 17:17:12 -0500 Subject: [PATCH] pylint --- torba/client/basedatabase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torba/client/basedatabase.py b/torba/client/basedatabase.py index 145897ad7..28d0901c0 100644 --- a/torba/client/basedatabase.py +++ b/torba/client/basedatabase.py @@ -57,7 +57,7 @@ class AIOSQLite: result = fun(self.connection, *args, **kwargs) # type: ignore self.connection.commit() return result - except (Exception, OSError) as e: + except (Exception, OSError): # as e: #log.exception('Error running transaction:', exc_info=e) self.connection.rollback() raise