Skip to content

Commit

Permalink
fix unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Nov 29, 2021
1 parent f1181bd commit 7bb029d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake/dag.py
Expand Up @@ -237,7 +237,7 @@ def update_jobids(self):
def cleanup_workdir(self):
for job in self.jobs:
if not self.is_edit_notebook_job(job):
for io_dir, job in set(
for io_dir in set(
os.path.dirname(io_file)
for io_file in chain(job.output, job.input)
if not os.path.exists(io_file)
Expand Down

0 comments on commit 7bb029d

Please sign in to comment.