Skip to content

Commit 508c5b7

Browse files
committed
Fix linting issues
1 parent 6748f3e commit 508c5b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_gzip_ng_threaded.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
import tempfile
1313
from pathlib import Path
1414

15-
from zlib_ng import gzip_ng_threaded, zlib_ng
16-
1715
import pytest
1816

17+
from zlib_ng import gzip_ng_threaded, zlib_ng
18+
1919
TEST_FILE = str((Path(__file__).parent / "data" / "test.fastq.gz"))
2020

2121

@@ -33,7 +33,7 @@ def test_threaded_write(mode, threads):
3333
with tempfile.NamedTemporaryFile("wb", delete=False) as tmp:
3434
# Use a small block size to simulate many writes.
3535
with gzip_ng_threaded.open(tmp, mode, threads=threads,
36-
block_size=8*1024) as out_file:
36+
block_size=8*1024) as out_file:
3737
gzip_open_mode = "rb" if "b" in mode else "rt"
3838
with gzip.open(TEST_FILE, gzip_open_mode) as in_file:
3939
while True:

0 commit comments

Comments
 (0)