Skip to content

Commit 6561975

Browse files
Format pool.py
1 parent 7f0bfc2 commit 6561975

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/dqliteclient/pool.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,7 @@ async def initialize(self) -> None:
367367
# connection-close sweep now does the same by
368368
# walking the explicit task list.
369369
create_tasks: list[asyncio.Task[DqliteConnection]] = [
370-
asyncio.create_task(self._create_connection())
371-
for _ in range(self._min_size)
370+
asyncio.create_task(self._create_connection()) for _ in range(self._min_size)
372371
]
373372
# Track whether ``gather`` returned normally; if it
374373
# raised CancelledError, the post-gather assignment

0 commit comments

Comments
 (0)