Skip to content

Commit 8b85c1f

Browse files
authored
fix
1 parent cfc35d2 commit 8b85c1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frameworks/Python/blacksheep/app-socketify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async def multiple_db_queries_test(request):
8585
worlds = []
8686
async with db_pool.acquire() as connection:
8787
for row_id in row_ids:
88-
number = await number = await connection.fetch_row(
88+
number = await connection.fetch_row(
8989
READ_ROW_SQL, [row_id]
9090
)
9191
worlds.append({"id": row_id, "randomNumber": number})

0 commit comments

Comments
 (0)