Skip to content

Commit 97002a9

Browse files
committed
remove cache poisoing bug, and deploy type checker throughout the codebase
1 parent 19762ce commit 97002a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_codecs/test_numcodecs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from zarr.abc.numcodec import Numcodec, _is_numcodec_cls
1313
from zarr.codecs import numcodecs as _numcodecs
1414
from zarr.codecs._v2 import codec_json_v2_to_v3
15-
from zarr.core.common import CodecJSON, CodecJSON_V3
15+
from zarr.core.common import CodecJSON
1616
from zarr.errors import ZarrUserWarning
1717
from zarr.registry import get_numcodec
1818

@@ -490,6 +490,7 @@ def test_json_roundtrip_default_config(
490490
# Helper function to compare dictionaries with potential numpy arrays
491491

492492
# Test serialization
493+
expected_transformed: CodecJSON
493494
if zarr_format == 3:
494495
expected_transformed = codec_json_v2_to_v3(expected)
495496
else:

0 commit comments

Comments
 (0)