Skip to content

Commit d68433e

Browse files
committedFeb 27, 2025·
Fix async cursor close method
1 parent d82d5e2 commit d68433e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ydb_sqlalchemy/sqlalchemy/dbapi_adapter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def executemany(self, sql, parameters=None):
105105
return await_only(self._cursor.executemany(sql, parameters))
106106

107107
def close(self):
108-
return await_only(self._cursor.close())
108+
return self._cursor.close()
109109

110110
def setinputsizes(self, *args):
111111
pass

0 commit comments

Comments
 (0)
Please sign in to comment.