Skip to content

Commit f64fb5a

Browse files
authored
fix: fix path typo (#72)
1 parent 58af422 commit f64fb5a

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
@@ -69,7 +69,7 @@ def run_job(self, job: JobExecutorInterface):
6969
group_or_rule = f"group_{job.name}" if job.is_group() else f"rule_{job.name}"
7070

7171
try:
72-
wildcard_str = f"_{'_'.join(job.wildcards)}" if job.wildcards else ""
72+
wildcard_str = "_".join(job.wildcards) if job.wildcards else ""
7373
except AttributeError:
7474
wildcard_str = ""
7575

0 commit comments

Comments
 (0)