Version 5.7.0 File: [`socketio/asyncio_server.py`, line `449`](https://github.com/miguelgrinberg/python-socketio/blob/main/src/socketio/asyncio_server.py#L449) if sid is None: self._send_packet(eio_sid, self.packet_class( packet.CONNECT_ERROR, data='Unable to connect', namespace=namespace)) return Here should be `await self._send_packet(...)`
Version 5.7.0
File:
socketio/asyncio_server.py, line449Here should be
await self._send_packet(...)