From 7ea3ae47e79510bafd62775eb7fa445132b6a337 Mon Sep 17 00:00:00 2001 From: Ruben Vorderman Date: Tue, 16 Jan 2024 09:36:17 +0100 Subject: [PATCH] Remove redundant comment --- src/xopen/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xopen/__init__.py b/src/xopen/__init__.py index bfcdcb6..3d00694 100644 --- a/src/xopen/__init__.py +++ b/src/xopen/__init__.py @@ -54,7 +54,6 @@ # 128K buffer size also used by cat, pigz etc. It is faster than the 8K default. BUFFER_SIZE = max(io.DEFAULT_BUFFER_SIZE, 128 * 1024) -# 1 is by far the fastest and most efficient level. XOPEN_DEFAULT_GZIP_COMPRESSION = 1 igzip: Optional[ModuleType]