Skip to content

Commit

Permalink
Fix a typo in Work Queue code comment (#2944)
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford authored Nov 6, 2023
1 parent f8b1836 commit 746b91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/workqueue/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit 746b91e

Please sign in to comment.