File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 71
71
VariableLengthUTF8 ,
72
72
ZDType ,
73
73
ZDTypeLike ,
74
- parse_data_type ,
74
+ parse_dtype ,
75
75
)
76
76
from zarr .core .dtype .common import HasEndianness , HasItemSize , HasObjectCodec
77
77
from zarr .core .indexing import (
@@ -638,7 +638,7 @@ async def _create(
638
638
Deprecated in favor of :func:`zarr.api.asynchronous.create_array`.
639
639
"""
640
640
641
- dtype_parsed = parse_data_type (dtype , zarr_format = zarr_format )
641
+ dtype_parsed = parse_dtype (dtype , zarr_format = zarr_format )
642
642
store_path = await make_store_path (store )
643
643
644
644
shape = parse_shapelike (shape )
@@ -4539,7 +4539,7 @@ async def init_array(
4539
4539
4540
4540
from zarr .codecs .sharding import ShardingCodec , ShardingCodecIndexLocation
4541
4541
4542
- zdtype = parse_data_type (dtype , zarr_format = zarr_format )
4542
+ zdtype = parse_dtype (dtype , zarr_format = zarr_format )
4543
4543
shape_parsed = parse_shapelike (shape )
4544
4544
chunk_key_encoding_parsed = _parse_chunk_key_encoding (
4545
4545
chunk_key_encoding , zarr_format = zarr_format
You can’t perform that action at this time.
0 commit comments