Skip to content

Commit

Permalink
Fix for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
TedBrookings committed Jul 12, 2023
1 parent 7fe00a7 commit 22b579c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fgpyo/vcf/tests/test_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _get_is_compressed(input_file: Path) -> bool:
try:
f_in.read(1)
return True
except gzip.BadGzipFile:
except OSError:
return False


Expand Down

0 comments on commit 22b579c

Please sign in to comment.