We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06758f2 commit fe515caCopy full SHA for fe515ca
numcodecs/checksum32.py
@@ -9,8 +9,8 @@
9
from .compat import ensure_contiguous_ndarray, ndarray_copy
10
from .jenkins import jenkins_lookup3
11
12
-if TYPE_CHECKING:
13
- from typing_extensions import Buffer # pragma: no cover
+if TYPE_CHECKING: # pragma: no cover
+ from typing_extensions import Buffer
14
15
CHECKSUM_LOCATION = Literal['start', 'end']
16
numcodecs/tests/test_zarr3.py
@@ -5,9 +5,10 @@
5
import numpy as np
6
import pytest
7
8
-if not TYPE_CHECKING:
- zarr = pytest.importorskip("zarr")
+ import zarr
else:
+ zarr = pytest.importorskip("zarr")
import zarr # pragma: no cover
import zarr.storage
0 commit comments