Skip to content

Commit 5dbc20d

Browse files
committed
fix: in-code documentation phrasing
1 parent bd2e9ca commit 5dbc20d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

snakemake_executor_plugin_slurm/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,8 +821,9 @@ def cancel_jobs(self, active_jobs: List[SubmittedJobInfo]):
821821
scancel_command = f"scancel {jobids}"
822822

823823
# Adding the --clusters=all flag, if we submitted to more than one
824-
# cluster. Issue #397 mentions that this flag is not available in
825-
# older SLURM versions, but we assume that multicluster setups will
824+
# cluster (assuming that choosing _a_ cluster is enough to fullfil
825+
# this criterion). Issue #397 mentions that this flag is not available
826+
# in older SLURM versions, but we assume that multicluster setups will
826827
# usually run on a recent version of SLURM.
827828
if self._submitted_job_clusters:
828829
scancel_command += " --clusters=all"

0 commit comments

Comments
 (0)