From b596ece7fa13b16301691a72e3948864281b721c Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 24 Aug 2024 17:47:19 +0300 Subject: [PATCH] Apply ruff/Pyflakes rule F401 F401 imported but unused --- blosc/test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/blosc/test.py b/blosc/test.py index ed8d905..e343ab7 100644 --- a/blosc/test.py +++ b/blosc/test.py @@ -344,7 +344,6 @@ def test_cbuffer_validate_failures(self): def test_bithuffle_leftovers(self): # Test for https://github.com/Blosc/c-blosc2/pull/100 - import numpy as np buffer = b" " * 641091 # a buffer that is not divisible by 8 cbuffer = blosc.compress(buffer, typesize=8, shuffle=blosc.BITSHUFFLE, clevel=1) dbuffer = blosc.decompress(cbuffer)