Skip to content

Commit ead3ac2

Browse files
committed
Oops
1 parent 4c4a68a commit ead3ac2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

appyter/ext/socketio/server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ class AsyncServer(
1414
`async with` is necessary for initialization
1515
'''
1616
def __init__(self, *args, **kwargs):
17-
ChunkedEmitMixin.__init__()
18-
PriorityQueuedEmitMixin.__init__()
19-
socketio.AsyncServer.__init__(*args, **kwargs)
17+
ChunkedEmitMixin.__init__(self)
18+
PriorityQueuedEmitMixin.__init__(self)
19+
socketio.AsyncServer.__init__(self, *args, **kwargs)
2020
self._listeners = { 'forward': [] }
2121

2222
async def __aenter__(self):

0 commit comments

Comments
 (0)