]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Dropped unneeded continue at the end of a loop
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 5 Oct 2021 11:31:26 +0000 (13:31 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 5 Oct 2021 13:10:30 +0000 (15:10 +0200)
psycopg/psycopg/generators.py

index 95eb000534b384a0caaf2254a5ac75f30b62a2fc..54a81ef4c25d25af45ecddd6bed9aa68482c5045 100644 (file)
@@ -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]]: