Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvoleg committed Oct 15, 2024
1 parent b09f33f commit b57e947
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/aio/test_table_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def test_alter_table(self, driver: ydb.aio.Driver):
table_name,
add_columns=[
ydb.Column("value2", ydb.OptionalType(ydb.PrimitiveType.Uint64)),
]
],
)

description = await client.describe_table(table_name)
Expand Down
2 changes: 1 addition & 1 deletion tests/table/test_table_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_alter_table(self, driver_sync: ydb.Driver):
table_name,
add_columns=[
ydb.Column("value2", ydb.OptionalType(ydb.PrimitiveType.Uint64)),
]
],
)

description = client.describe_table(table_name)
Expand Down

0 comments on commit b57e947

Please sign in to comment.