We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0bfc2 commit 6561975Copy full SHA for 6561975
1 file changed
src/dqliteclient/pool.py
@@ -367,8 +367,7 @@ async def initialize(self) -> None:
367
# connection-close sweep now does the same by
368
# walking the explicit task list.
369
create_tasks: list[asyncio.Task[DqliteConnection]] = [
370
- asyncio.create_task(self._create_connection())
371
- for _ in range(self._min_size)
+ asyncio.create_task(self._create_connection()) for _ in range(self._min_size)
372
]
373
# Track whether ``gather`` returned normally; if it
374
# raised CancelledError, the post-gather assignment
0 commit comments