Skip to content

Commit de77c12

Browse files
authored
fix: add missing arg on on_join_push_timeout (#208)
1 parent b9d52af commit de77c12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

realtime/_async/channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def on_join_push_error(payload: Dict[str, Any]):
235235
Exception(json.dumps(payload)),
236236
)
237237

238-
def on_join_push_timeout():
238+
def on_join_push_timeout(*args):
239239
callback and callback(RealtimeSubscribeStates.TIMED_OUT, None)
240240

241241
self.join_push.receive("ok", on_join_push_ok).receive(

0 commit comments

Comments
 (0)