From: Daniele Varrazzo Date: Tue, 5 Oct 2021 11:31:26 +0000 (+0200) Subject: Dropped unneeded continue at the end of a loop X-Git-Tag: 3.0~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a045e613adf387f3e70b1b452c9490f35f6397eb;p=thirdparty%2Fpsycopg.git Dropped unneeded continue at the end of a loop --- 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]]: