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 f06e3dc commit 7d2383eCopy full SHA for 7d2383e
1 file changed
src/zarr/core/array.py
@@ -207,6 +207,7 @@ def parse_array_metadata(data: object, codec_class_map: Mapping[str, type[Codec]
207
if isinstance(data, ArrayV3Metadata):
208
return type(data).from_dict(data.to_dict(), codec_class_map=codec_class_map)
209
elif isinstance(data, ArrayV2Metadata):
210
+ # V2 arrays get their codecs from numcodecs, for now. the codec class map is not used.
211
return data
212
elif isinstance(data, dict):
213
zarr_format = data.get("zarr_format")
0 commit comments