From 746b91ed467723bb8a6ebdf5e4c48046a58a8166 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Sun, 5 Nov 2023 22:56:30 -0600 Subject: [PATCH] Fix a typo in Work Queue code comment (#2944) --- parsl/executors/workqueue/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsl/executors/workqueue/executor.py b/parsl/executors/workqueue/executor.py index 230b074ff0..80559bf5cc 100644 --- a/parsl/executors/workqueue/executor.py +++ b/parsl/executors/workqueue/executor.py @@ -449,7 +449,7 @@ def submit(self, func, resource_specification, *args, **kwargs): input_files = [] output_files = [] - # Determine the input and output files that will exist at the workes: + # Determine the input and output files that will exist at the workers: input_files += [self._register_file(f) for f in kwargs.get("inputs", []) if isinstance(f, File)] output_files += [self._register_file(f) for f in kwargs.get("outputs", []) if isinstance(f, File)]