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 0947840 commit 5337d17Copy full SHA for 5337d17
1 file changed
docs/user-guide/data_types.rst
@@ -450,6 +450,6 @@ handles a range of input types:
450
451
>>> dt_dict = {"name": "numpy.datetime64", "configuration": {"unit": "s", "scale_factor": 10}}
452
>>> parse_data_type(dt_dict, zarr_format=3)
453
- DateTime64(endianness='big', scale_factor=10, unit='s')
+ DateTime64(endianness='little', scale_factor=10, unit='s')
454
>>> parse_data_type(dt_dict, zarr_format=3).to_json(zarr_format=3)
455
- {"name": "numpy.datetime64", "configuration": {"unit": "s", "scale_factor": 10}}
+ {'name': 'numpy.datetime64', 'configuration': {'unit': 's', 'scale_factor': 10}}
0 commit comments