Skip to content

Commit ec8d9ed

Browse files
authored
Fix constructor issue
It creates problem changing zmq import to zmq.green import
1 parent 75693c4 commit ec8d9ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyre/zsocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class ZSocket(zmq.Socket):
2020

2121
def __init__(self, *args, **kwargs):
22-
super(zmq.Socket, self).__init__(*args, **kwargs)
22+
super(ZSocket, self).__init__(*args, **kwargs)
2323

2424
# --------------------------------------------------------------------------
2525
# Send a signal over a socket. A signal is a zero-byte message.

0 commit comments

Comments
 (0)