Skip to content

Commit 771fc5c

Browse files
committed
style fixes
1 parent 1a06f3e commit 771fc5c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

ydb/aio/table.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ async def create_table(
181181
path: str,
182182
table_description: TableDescription,
183183
settings: Optional[settings_impl.BaseRequestSettings] = None,
184-
) -> ydb.Operation:
184+
) -> "ydb.Operation":
185185
"""
186186
Create a YDB table.
187187
@@ -201,7 +201,7 @@ async def drop_table(
201201
self,
202202
path: str,
203203
settings: Optional[settings_impl.BaseRequestSettings] = None,
204-
) -> ydb.Operation:
204+
) -> "ydb.Operation":
205205
"""
206206
Drop a YDB table.
207207
@@ -234,7 +234,7 @@ async def alter_table(
234234
alter_partitioning_settings: Optional[ydb.PartitioningSettings] = None,
235235
set_key_bloom_filter: Optional[ydb.FeatureFlag] = None,
236236
set_read_replicas_settings: Optional[ydb.ReadReplicasSettings] = None,
237-
) -> ydb.Operation:
237+
) -> "ydb.Operation":
238238
"""
239239
Alter a YDB table.
240240
@@ -303,7 +303,7 @@ async def copy_table(
303303
source_path: str,
304304
destination_path: str,
305305
settings: Optional[settings_impl.BaseRequestSettings] = None,
306-
) -> ydb.Operation:
306+
) -> "ydb.Operation":
307307
"""
308308
Copy a YDB table.
309309
@@ -327,7 +327,7 @@ async def copy_tables(
327327
self,
328328
source_destination_pairs: List[Tuple[str, str]],
329329
settings: Optional[settings_impl.BaseRequestSettings] = None
330-
) -> ydb.Operation:
330+
) -> "ydb.Operation":
331331
"""
332332
Copy a YDB tables.
333333
@@ -346,7 +346,7 @@ async def rename_tables(
346346
self,
347347
rename_items: List[Tuple[str, str]],
348348
settings=None
349-
) -> ydb.Operation:
349+
) -> "ydb.Operation":
350350
"""
351351
Rename a YDB tables.
352352

ydb/table.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ def create_table(
12411241
path: str,
12421242
table_description: TableDescription,
12431243
settings: Optional[settings_impl.BaseRequestSettings] = None,
1244-
) -> ydb.Operation:
1244+
) -> "ydb.Operation":
12451245
"""
12461246
Create a YDB table.
12471247
@@ -1261,7 +1261,7 @@ def drop_table(
12611261
self,
12621262
path: str,
12631263
settings: Optional[settings_impl.BaseRequestSettings] = None,
1264-
) -> ydb.Operation:
1264+
) -> "ydb.Operation":
12651265
"""
12661266
Drop a YDB table.
12671267
@@ -1294,7 +1294,7 @@ def alter_table(
12941294
alter_partitioning_settings: Optional[ydb.PartitioningSettings] = None,
12951295
set_key_bloom_filter: Optional[ydb.FeatureFlag] = None,
12961296
set_read_replicas_settings: Optional[ydb.ReadReplicasSettings] = None,
1297-
) -> ydb.Operation:
1297+
) -> "ydb.Operation":
12981298
"""
12991299
Alter a YDB table.
13001300
@@ -1363,7 +1363,7 @@ def copy_table(
13631363
source_path: str,
13641364
destination_path: str,
13651365
settings: Optional[settings_impl.BaseRequestSettings] = None,
1366-
) -> ydb.Operation:
1366+
) -> "ydb.Operation":
13671367
"""
13681368
Copy a YDB table.
13691369
@@ -1387,7 +1387,7 @@ def copy_tables(
13871387
self,
13881388
source_destination_pairs: List[Tuple[str, str]],
13891389
settings: Optional[settings_impl.BaseRequestSettings] = None
1390-
) -> ydb.Operation:
1390+
) -> "ydb.Operation":
13911391
"""
13921392
Copy a YDB tables.
13931393
@@ -1406,7 +1406,7 @@ def rename_tables(
14061406
self,
14071407
rename_items: List[Tuple[str, str]],
14081408
settings=None
1409-
) -> ydb.Operation:
1409+
) -> "ydb.Operation":
14101410
"""
14111411
Rename a YDB tables.
14121412

0 commit comments

Comments
 (0)