Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 28, 2024
1 parent 63b3faa commit 8b0b198
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion executorlib/standalone/cache/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ def execute_with_pysqa(
"working_directory": resource_dict["cwd"],
}
del resource_dict["cwd"]
unsupported_keys = ["threads_per_core", "gpus_per_core", "openmpi_oversubscribe", "slurm_cmd_args"]
unsupported_keys = [
"threads_per_core",
"gpus_per_core",
"openmpi_oversubscribe",
"slurm_cmd_args",
]
for k in unsupported_keys:
if k in resource_dict:
del resource_dict[k]
Expand Down

0 comments on commit 8b0b198

Please sign in to comment.