From a045e613adf387f3e70b1b452c9490f35f6397eb Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 5 Oct 2021 13:31:26 +0200 Subject: [PATCH] Dropped unneeded continue at the end of a loop --- psycopg/psycopg/generators.py | 1 - 1 file changed, 1 deletion(-) diff --git a/psycopg/psycopg/generators.py b/psycopg/psycopg/generators.py index 95eb00053..54a81ef4c 100644 --- a/psycopg/psycopg/generators.py +++ b/psycopg/psycopg/generators.py @@ -96,7 +96,6 @@ def send(pgconn: PGconn) -> PQGen[None]: # This call may read notifies: they will be saved in the # PGconn buffer and passed to Python later, in `fetch()`. pgconn.consume_input() - continue def fetch_many(pgconn: PGconn) -> PQGen[List[PGresult]]: -- 2.47.2