Skip to content

Commit b0edab6

Browse files
committed
remove infinite recursion
1 parent b95f3be commit b0edab6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/zarr/core/dtype/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def parse_data_type(
224224
>>> parse_data_type("int32", zarr_format=2)
225225
Int32(endianness="little")
226226
"""
227-
return parse_data_type(dtype_spec, zarr_format=zarr_format)
227+
return parse_dtype(dtype_spec, zarr_format=zarr_format)
228228

229229

230230
def parse_dtype(

0 commit comments

Comments
 (0)