Skip to content

Commit ec1d225

Browse files
committed
fix super
1 parent 40dc949 commit ec1d225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

poloniex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def toggleAutoRenew(self, orderNumber):
669669
class Poloniex(PoloniexHelper):
670670
""" Child class of Poloniex with support for the websocket api """
671671
def __init__(self, *args, **kwargs):
672-
super(PoloniexSocketed, self).__init__(*args, **kwargs)
672+
super(Poloniex, self).__init__(*args, **kwargs)
673673
self.socket = WebSocketApp(url="wss://api2.poloniex.com/",
674674
on_open=self.on_open,
675675
on_message=self.on_message,

0 commit comments

Comments
 (0)