Remove unnecessary super call

This commit is contained in:
Bálint Bokros 2018-02-19 10:02:42 +01:00
parent 24fd753679
commit 609cd19589

View File

@ -17,9 +17,6 @@ class ZMQWebSocketHandler(WebSocketHandler):
def on_close(self):
ZMQWebSocketHandler.instances.remove(self)
def __init__(self, application, request, **kwargs):
super().__init__(application, request, **kwargs)
def open(self, *args, **kwargs):
log.debug('WebSocket connection initiated')
self._event_handler_connector.register_callback(self.zmq_callback)