Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitchell R. Vollger committed Nov 27, 2024
1 parent bb8edba commit 6087cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/fdr-table.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def read_pileup_file(infile, nrows):
# check that there is at least two lines
open_infile = gzip.open if is_gzipped(infile) else open
with open_infile(infile) as f:
for i in enumerate(f):
for i, _ in enumerate(f):
if i > 1:
break
if i < 2:
Expand Down

0 comments on commit 6087cba

Please sign in to comment.