We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e130c57 commit ff5bc8cCopy full SHA for ff5bc8c
ydb/aio/connection.py
@@ -127,6 +127,9 @@ async def __anext__(self):
127
await self.on_disconnected_callback()
128
raise ydb_error
129
130
+ def __getattr__(self, item):
131
+ return getattr(self.resp, item)
132
+
133
134
class Connection:
135
__slots__ = (
ydb/connection.py
@@ -363,6 +363,9 @@ def __next__(self):
363
self.on_disconnected_callback()
364
365
366
367
368
369
370
class Connection(object):
371
0 commit comments