Skip to content

Commit dd0da03

Browse files
committed
Fix linting issues
1 parent e820dc1 commit dd0da03

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_igzip_lib.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def test_compress_decompress(level, flag: Flag, mem_level, hist_bits):
6868
assert decomp == DATA
6969

7070

71-
7271
class TestIgzipDecompressor():
7372
# Tests adopted from CPython's test_bz2.py
7473
TEXT = DATA
@@ -222,4 +221,4 @@ def test_failure(self):
222221
igzd.decompress(self.BAD_DATA * 30)
223222
# Make sure there are no internal consistencies
224223
with pytest.raises(Exception):
225-
igzd.decompress(self.BAD_DATA * 30)
224+
igzd.decompress(self.BAD_DATA * 30)

0 commit comments

Comments
 (0)