From 73a775c4115ce76ee939afad66a32674481b4f70 Mon Sep 17 00:00:00 2001 From: rhatgadkar-goog Date: Thu, 9 Jan 2025 01:08:22 +0000 Subject: [PATCH] fix lint errors --- tests/system/test_asyncpg_connection.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/system/test_asyncpg_connection.py b/tests/system/test_asyncpg_connection.py index ed3a7be1..9cefd2ba 100644 --- a/tests/system/test_asyncpg_connection.py +++ b/tests/system/test_asyncpg_connection.py @@ -203,12 +203,10 @@ async def test_lazy_connection_with_asyncpg() -> None: password = os.environ["ALLOYDB_PASS"] db = os.environ["ALLOYDB_DB"] - pool, connector = await create_asyncpg_pool( - inst_uri, user, password, db, "lazy" - ) + pool, connector = await create_asyncpg_pool(inst_uri, user, password, db, "lazy") async with pool.acquire() as conn: res = await conn.fetch("SELECT 1") assert res[0][0] == 1 - await connector.close() \ No newline at end of file + await connector.close()