Skip to content

Commit ff72d74

Browse files
committed
style fixes
1 parent ae3f8f9 commit ff72d74

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/auth/test_static_credentials.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def check_driver_works(driver):
1818
def test_static_credentials_default(endpoint, database):
1919
driver_config = ydb.DriverConfig(
2020
endpoint,
21-
database
21+
database,
2222
)
2323
credentials = ydb.StaticCredentials(driver_config, USERNAME, PASSWORD)
2424

@@ -30,7 +30,7 @@ def test_static_credentials_classmethod(endpoint, database):
3030
driver_config = ydb.DriverConfig(
3131
endpoint,
3232
database,
33-
credentials=ydb.StaticCredentials.from_user_password(USERNAME, PASSWORD)
33+
credentials=ydb.StaticCredentials.from_user_password(USERNAME, PASSWORD),
3434
)
3535

3636
with ydb.Driver(driver_config=driver_config) as driver:
@@ -41,10 +41,9 @@ def test_static_credentials_wrong_creds(endpoint, database):
4141
driver_config = ydb.DriverConfig(
4242
endpoint,
4343
database,
44-
credentials=ydb.StaticCredentials.from_user_password(USERNAME, PASSWORD*2)
44+
credentials=ydb.StaticCredentials.from_user_password(USERNAME, PASSWORD*2),
4545
)
4646

4747
with pytest.raises(TimeoutError):
4848
with ydb.Driver(driver_config=driver_config) as driver:
4949
driver.wait(5)
50-

0 commit comments

Comments
 (0)