Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 27b208d

Browse files
Linting
1 parent 2cb8988 commit 27b208d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

databases/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,9 @@ async def iterate(
220220
self, query: typing.Union[ClauseElement, str], values: dict = None
221221
) -> typing.AsyncGenerator[typing.Any, None]:
222222
async with self._query_lock:
223-
async for record in self._connection.iterate(self._build_query(query, values)):
223+
async for record in self._connection.iterate(
224+
self._build_query(query, values)
225+
):
224226
yield record
225227

226228
def transaction(self, *, force_rollback: bool = False) -> "Transaction":

0 commit comments

Comments
 (0)