From 57883bf7271af627cf9894a20de992191c934b7c Mon Sep 17 00:00:00 2001 From: Ruben Vorderman Date: Thu, 12 Oct 2023 08:50:51 +0200 Subject: [PATCH] Black formatting --- src/xopen/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xopen/__init__.py b/src/xopen/__init__.py index 66464a4..b8d08f2 100644 --- a/src/xopen/__init__.py +++ b/src/xopen/__init__.py @@ -1055,7 +1055,8 @@ def _open_gz(filename, mode: str, compresslevel, threads, **text_mode_kwargs): return igzip_threaded.open( filename, mode, - isal_zlib.ISAL_DEFAULT_COMPRESSION if compresslevel is None + isal_zlib.ISAL_DEFAULT_COMPRESSION + if compresslevel is None else compresslevel, **text_mode_kwargs, threads=1 if threads is None else threads,