From f8ddd11c3926db513bbe43ae4af012369b2d8485 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 13 Nov 2024 18:17:54 +0000 Subject: [PATCH] linted tests --- tests/test_read_layers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_read_layers.py b/tests/test_read_layers.py index 7c9bc1b..c2cc751 100644 --- a/tests/test_read_layers.py +++ b/tests/test_read_layers.py @@ -1,5 +1,4 @@ from concurrent.futures import ThreadPoolExecutor -from enum import Enum import numpy as np from pathlib import Path import pytest @@ -9,7 +8,7 @@ import subprocess TEST_ARRAY = np.arange( np.iinfo(np.int32).min, np.iinfo(np.int32).max, - 256, # Limited to ~256MB uncompressed for practicality + 256, # Limited to ~256MB uncompressed for practicality ).reshape((-1, 4)) N_FILES = 1024 TEST_ZVALS = np.arange(0, 10_240, 10_240 // (N_FILES - 1))