Skip to content

Commit fe708ff

Browse files
author
Sam McHardy
authored
Merge pull request sammchardy#329 from duduzhu/master
fixed the way in which websocket calls the base class __init__, that …
2 parents 4637278 + 4e844a8 commit fe708ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

binance/websockets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
class BinanceClientProtocol(WebSocketClientProtocol):
1717

1818
def __init__(self):
19-
super().__init__()
19+
super(WebSocketClientProtocol,self).__init__()
2020

2121
def onConnect(self, response):
2222
# reset the delay after reconnecting

0 commit comments

Comments
 (0)