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 63239ed commit 104a95aCopy full SHA for 104a95a
seatable_api/socket_io.py
@@ -9,10 +9,6 @@
9
10
class SIO(socketio.Client):
11
12
- def __init__(self, *args, **kwargs):
13
- self.base = kwargs.pop('base')
14
- super().__init__(*args, **kwargs)
15
-
16
def _handle_disconnect(self, namespace):
17
"""io server disconnect"""
18
self.logger.info('Engine.IO connection disconnected')
@@ -31,7 +27,7 @@ class SocketIO(object):
31
27
32
28
def __init__(self, base):
33
29
self.base = base
34
- self.sio = SIO(request_timeout=base.timeout, base=base)
30
+ self.sio = SIO(request_timeout=base.timeout)
35
36
def __str__(self):
37
return '<SeaTable SocketIO [ %s ]>' % self.base.dtable_name
0 commit comments