Skip to content

Commit baa4144

Browse files
committed
black 2
1 parent b580d2f commit baa4144

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ydb/aio/pool.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,9 @@ def __init__(self, driver_config):
204204
# If discovery is disabled, just add the initial endpoint to the store
205205
async def init_connection():
206206
ready_connection = Connection(self._driver_config.endpoint, self._driver_config)
207-
await ready_connection.connection_ready(ready_timeout=getattr(self._driver_config, "discovery_request_timeout", 10))
207+
await ready_connection.connection_ready(
208+
ready_timeout=getattr(self._driver_config, "discovery_request_timeout", 10)
209+
)
208210
self._store.add(ready_connection)
209211

210212
# Create and schedule the task to initialize the connection

0 commit comments

Comments
 (0)