From 861dda8dcad5bd57dce2a07bc1b17363a420f838 Mon Sep 17 00:00:00 2001 From: Lei Wang Date: Tue, 19 Nov 2024 18:21:23 -0500 Subject: [PATCH] lint --- .../engines/high_throughput/engine.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compute_endpoint/globus_compute_endpoint/engines/high_throughput/engine.py b/compute_endpoint/globus_compute_endpoint/engines/high_throughput/engine.py index f46bdfcab..a5ec51fad 100644 --- a/compute_endpoint/globus_compute_endpoint/engines/high_throughput/engine.py +++ b/compute_endpoint/globus_compute_endpoint/engines/high_throughput/engine.py @@ -379,8 +379,12 @@ def start( self.run_dir = run_dir self.endpoint_id = endpoint_id - self.outgoing_q = zmq_pipes.TasksOutgoing("localhost", self.interchange_port_range) - self.incoming_q = zmq_pipes.ResultsIncoming("localhost", self.interchange_port_range) + self.outgoing_q = zmq_pipes.TasksOutgoing( + "localhost", self.interchange_port_range + ) + self.incoming_q = zmq_pipes.ResultsIncoming( + "localhost", self.interchange_port_range + ) self.command_client = zmq_pipes.CommandClient( "localhost", self.interchange_port_range )