Skip to content

Imported name is not used anywhere in the module #3300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import pytest

import zarr
import zarr.api
from zarr import zeros
from zarr.abc.codec import CodecPipeline
from zarr.abc.store import ByteSetter, Store
Expand Down
6 changes: 2 additions & 4 deletions tests/test_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
from pathlib import Path
from typing import Any, Literal

import numcodecs.abc
import numcodecs.vlen
import numpy as np
import pytest
from numcodecs import Delta
from numcodecs import Delta, Zlib
from numcodecs.blosc import Blosc
from numcodecs.zstd import Zstd

Expand Down Expand Up @@ -123,7 +121,7 @@ def test_v2_encode_decode_with_data(dtype: ZDType[Any, Any], value: str) -> None
np.testing.assert_equal(data, expected)


@pytest.mark.parametrize("filters", [[], [numcodecs.Delta(dtype="<i4")], [numcodecs.Zlib(level=2)]])
@pytest.mark.parametrize("filters", [[], [Delta(dtype="<i4")], [Zlib(level=2)]])
@pytest.mark.parametrize("order", ["C", "F"])
def test_v2_filters_codecs(filters: Any, order: Literal["C", "F"]) -> None:
array_fixture = [42]
Expand Down
Loading