Skip to content

Commit d54a8e5

Browse files
authored
add missing await to get_table_names
1 parent f9dacef commit d54a8e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb_dbapi/connections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ async def callee() -> ydb.Directory:
385385
if child.is_table():
386386
result.append(child_abs_path)
387387
elif child.is_directory() and not child.name.startswith("."):
388-
result.extend(self.get_table_names(child_abs_path))
388+
result.extend(await self.get_table_names(child_abs_path))
389389
return result
390390

391391

0 commit comments

Comments
 (0)