From: Daniele Varrazzo Date: Mon, 13 Jun 2022 04:30:18 +0000 (+0200) Subject: refactor: drop unused variable X-Git-Tag: 3.1~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea7c787e7728f6cf5d8cfcf5d7ccd6f1e36d089d;p=thirdparty%2Fpsycopg.git refactor: drop unused variable --- diff --git a/psycopg/psycopg/connection.py b/psycopg/psycopg/connection.py index d0417c44c..4da145b3c 100644 --- a/psycopg/psycopg/connection.py +++ b/psycopg/psycopg/connection.py @@ -68,8 +68,6 @@ FATAL_ERROR = pq.ExecStatus.FATAL_ERROR IDLE = pq.TransactionStatus.IDLE INTRANS = pq.TransactionStatus.INTRANS -ABORTED = pq.PipelineStatus.ABORTED - logger = logging.getLogger("psycopg")