Skip to content

Commit c0a3a88

Browse files
committed
Remove a stale line, and make ruff happy
1 parent db6d355 commit c0a3a88

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/blosc2/ndarray.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from itertools import product
1717
from typing import TYPE_CHECKING, Any, NamedTuple
1818

19-
from dask.array.routines import aligned_coarsen_chunks
2019
from numpy.exceptions import ComplexWarning
2120

2221
if TYPE_CHECKING:
@@ -1031,7 +1030,7 @@ def extract_values(arr, indices: np.ndarray[np.int_], max_cache_size: int = 10)
10311030
return extracted_values
10321031

10331032

1034-
def detect_aligned_chunks(
1033+
def detect_aligned_chunks( # noqa: C901
10351034
key: Sequence[slice], shape: Sequence[int], chunks: Sequence[int], consecutive: bool = False
10361035
) -> list[int]:
10371036
"""

0 commit comments

Comments
 (0)