Skip to content

Commit 83ff23e

Browse files
fix
1 parent f263216 commit 83ff23e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snakemake/jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1553,7 +1553,7 @@ def needed(job_, f):
15531553
)
15541554

15551555
# ignore missing output if the output is not needed outside of this group
1556-
if not kwargs["ignore_missing_output"]:
1556+
if not kwargs.get("ignore_missing_output", False):
15571557
kwargs["ignore_missing_output"] = [
15581558
f
15591559
for j in self.jobs

0 commit comments

Comments
 (0)