Skip to content

Commit

Permalink
fix: fix path typo (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgvieira committed Apr 17, 2024
1 parent 58af422 commit f64fb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_slurm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run_job(self, job: JobExecutorInterface):
group_or_rule = f"group_{job.name}" if job.is_group() else f"rule_{job.name}"

try:
wildcard_str = f"_{'_'.join(job.wildcards)}" if job.wildcards else ""
wildcard_str = "_".join(job.wildcards) if job.wildcards else ""
except AttributeError:
wildcard_str = ""

Expand Down

0 comments on commit f64fb5a

Please sign in to comment.