Skip to content

Commit bd2e9ca

Browse files
committed
fix: linting (non-f string to ordinary string)
1 parent b3c3312 commit bd2e9ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snakemake_executor_plugin_slurm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ def cancel_jobs(self, active_jobs: List[SubmittedJobInfo]):
825825
# older SLURM versions, but we assume that multicluster setups will
826826
# usually run on a recent version of SLURM.
827827
if self._submitted_job_clusters:
828-
scancel_command += f" --clusters=all"
828+
scancel_command += " --clusters=all"
829829

830830
subprocess.check_output(
831831
scancel_command,

0 commit comments

Comments
 (0)