Skip to content

Commit c41c7ae

Browse files
committed
style fixes
1 parent aaf60a8 commit c41c7ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ydb/driver.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def default_from_endpoint_and_database(cls, endpoint, database, root_certificate
176176
database,
177177
credentials=default_credentials(credentials),
178178
root_certificates=root_certificates,
179-
**kwargs
179+
**kwargs,
180180
)
181181

182182
@classmethod
@@ -187,7 +187,7 @@ def default_from_connection_string(cls, connection_string, root_certificates=Non
187187
database,
188188
credentials=default_credentials(credentials),
189189
root_certificates=root_certificates,
190-
**kwargs
190+
**kwargs,
191191
)
192192

193193
def set_grpc_keep_alive_timeout(self, timeout):
@@ -215,7 +215,7 @@ def get_config(
215215
root_certificates=None,
216216
credentials=None,
217217
config_class=DriverConfig,
218-
**kwargs
218+
**kwargs,
219219
):
220220
if driver_config is None:
221221
if connection_string is not None:
@@ -249,7 +249,7 @@ def __init__(
249249
database=None,
250250
root_certificates=None,
251251
credentials=None,
252-
**kwargs
252+
**kwargs,
253253
):
254254
"""
255255
Constructs a driver instance to be used in table and scheme clients.

0 commit comments

Comments
 (0)