Skip to content

Commit

Permalink
Run Black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-oqc committed Nov 15, 2024
1 parent d515840 commit 6c72106
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/QAT_RPC/qat_rpc/zmq/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ def stop(self):


class ZMQClient(ZMQBase):
def __init__(self, client_ip: Optional[str] = "127.0.0.1", client_port: Optional[str] = "5556"):
def __init__(
self, client_ip: Optional[str] = "127.0.0.1", client_port: Optional[str] = "5556"
):
super().__init__(socket_type=zmq.REQ, ip_address=client_ip, port=client_port)
self._socket.setsockopt(zmq.LINGER, 0)
self._socket.connect(self.address)
Expand Down

0 comments on commit 6c72106

Please sign in to comment.