From 6bef9107a7c37d47424652f21886ad32844d8b7d Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Thu, 2 Nov 2023 16:06:45 +0000 Subject: [PATCH] Fix a typo in Work Queue code comment --- 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)]