Skip to content

Commit de9b720

Browse files
committed
Fix lint errors
1 parent 4e19a12 commit de9b720

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/isal/igzip_lib.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ COMP_GZIP_NO_HDR: int
3232
COMP_ZLIB: int
3333
COMP_ZLIB_NO_HDR: int
3434
DECOMP_DEFLATE: int
35+
DECOMP_ZLIB: int
3536
DECOMP_GZIP: int
3637
DECOMP_GZIP_NO_HDR: int
3738
DECOMP_ZLIB_NO_HDR: int

tests/test_igzip_lib.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
import itertools
2222
from typing import NamedTuple
2323

24+
from isal import igzip_lib
25+
2426
import pytest
2527

26-
from isal import igzip_lib
2728
from .test_compat import DATA as RAW_DATA
2829

2930

@@ -54,8 +55,10 @@ def test_compress_decompress(level, flag: Flag, hist_bits):
5455
decomp = igzip_lib.decompress(comp, flag.decomp, hist_bits)
5556
assert decomp == DATA
5657

58+
5759
class TestIgzipDecompressor():
5860
compressed = igzip_lib.compress(DATA)
61+
5962
def test_decompress(self):
6063
decomp = igzip_lib.IgzipDecompressor()
6164
decompressed = decomp.decompress(self.compressed)

0 commit comments

Comments
 (0)