We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 742ffc2 commit 623d780Copy full SHA for 623d780
firebirdsql/aio/fbcore.py
@@ -1023,5 +1023,5 @@ async def close(self):
1023
def __del__(self):
1024
if self.sock:
1025
# Async close cannot be called from __del__
1026
- # self.close()
+ # self.close()
1027
pass
firebirdsql/aio/stream.py
@@ -47,7 +47,7 @@ async def _await_pending_send(self):
47
48
async def async_recv(self, nbytes):
49
await self._await_pending_send()
50
-
+
51
if len(self._buf) < nbytes:
52
read_size = max(8192, nbytes - len(self._buf))
53
chunk = await self.loop.sock_recv(self._sock, read_size)
0 commit comments