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 2cbdfc8 commit 9d01432Copy full SHA for 9d01432
1 file changed
src/zarr/core/codec_pipeline.py
@@ -132,6 +132,8 @@ def decode(
132
133
Pure compute -- no IO.
134
"""
135
+ # All codecs are verified to implement SupportsSyncCodec in __post_init__,
136
+ # but the stored types (ArrayArrayCodec, etc.) don't reflect this statically.
137
bb_out: Any = chunk_bytes
138
for bb_codec in reversed(self._bb_codecs):
139
bb_out = bb_codec._decode_sync(bb_out, self._ab_spec) # type: ignore[attr-defined]
0 commit comments