Skip to content

Commit

Permalink
pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
golanha committed Aug 13, 2020
1 parent 7d5fa1b commit cc29808
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hkube_python_wrapper/communication/zmq/ZMQRequest.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ def invokeAdapter(self):
if (result):
message = self.socket.recv()
return message
else:
raise Exception('Timed out:' + str(self.timeout))
raise Exception('Timed out:' + str(self.timeout))
raise Exception('No server on other side ' + self.connStr)

def close(self):
Expand Down

0 comments on commit cc29808

Please sign in to comment.