Skip to content

Commit

Permalink
remove self
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyminium committed Dec 4, 2024
1 parent 039a57f commit 902bc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openff/evaluator/backends/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def _to_dask_worker_resources(self) -> list[str]:
def _update_worker_with_resources(self, worker_spec: dict) -> dict:
worker_container = worker_spec["containers"][0]
worker_command = list(worker_container["args"])
worker_command.extend(self._resources_per_worker._to_dask_worker_resources())
worker_command.extend(self._to_dask_worker_resources())
worker_container["args"] = worker_command
return worker_spec

Expand Down

0 comments on commit 902bc4c

Please sign in to comment.