From d9e6d1bca6a9e1df3aa29cfc6ced7f02f04bddb5 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Fri, 15 Sep 2023 14:33:05 +0000 Subject: [PATCH] Remove spurious docstring in htex initialize_scaling The removed text looks like it was written as if for an abstract base class, not for a concrete implementation like htex. --- parsl/executors/high_throughput/executor.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/parsl/executors/high_throughput/executor.py b/parsl/executors/high_throughput/executor.py index 69af77a86b..5a6561438c 100644 --- a/parsl/executors/high_throughput/executor.py +++ b/parsl/executors/high_throughput/executor.py @@ -305,10 +305,7 @@ def __init__(self, radio_mode = "htex" def initialize_scaling(self): - """ Compose the launch command and call the scale_out - - This should be implemented in the child classes to take care of - executor specific oddities. + """Compose the launch command and scale out the initial blocks. """ debug_opts = "--debug" if self.worker_debug else "" max_workers = "" if self.max_workers == float('inf') else "--max_workers={}".format(self.max_workers)