Skip to content

Commit 494cfd2

Browse files
Imported name is not used anywhere in the module
1 parent a0c56fb commit 494cfd2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

tests/test_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import pytest
99

1010
import zarr
11-
import zarr.api
1211
from zarr import zeros
1312
from zarr.abc.codec import CodecPipeline
1413
from zarr.abc.store import ByteSetter, Store

tests/test_v2.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
from pathlib import Path
33
from typing import Any, Literal
44

5-
import numcodecs.abc
6-
import numcodecs.vlen
75
import numpy as np
86
import pytest
97
from numcodecs import Delta
8+
from numcodecs import Zlib
109
from numcodecs.blosc import Blosc
1110
from numcodecs.zstd import Zstd
1211

@@ -123,7 +122,7 @@ def test_v2_encode_decode_with_data(dtype: ZDType[Any, Any], value: str) -> None
123122
np.testing.assert_equal(data, expected)
124123

125124

126-
@pytest.mark.parametrize("filters", [[], [numcodecs.Delta(dtype="<i4")], [numcodecs.Zlib(level=2)]])
125+
@pytest.mark.parametrize("filters", [[], [Delta(dtype="<i4")], [Zlib(level=2)]])
127126
@pytest.mark.parametrize("order", ["C", "F"])
128127
def test_v2_filters_codecs(filters: Any, order: Literal["C", "F"]) -> None:
129128
array_fixture = [42]

0 commit comments

Comments
 (0)