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 4c4a68a commit ead3ac2Copy full SHA for ead3ac2
appyter/ext/socketio/server.py
@@ -14,9 +14,9 @@ class AsyncServer(
14
`async with` is necessary for initialization
15
'''
16
def __init__(self, *args, **kwargs):
17
- ChunkedEmitMixin.__init__()
18
- PriorityQueuedEmitMixin.__init__()
19
- socketio.AsyncServer.__init__(*args, **kwargs)
+ ChunkedEmitMixin.__init__(self)
+ PriorityQueuedEmitMixin.__init__(self)
+ socketio.AsyncServer.__init__(self, *args, **kwargs)
20
self._listeners = { 'forward': [] }
21
22
async def __aenter__(self):
0 commit comments