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 b6c33fc commit 9736b4bCopy full SHA for 9736b4b
src/zarr/core/metadata/v3.py
@@ -117,7 +117,6 @@ def _replace_special_floats(obj: object) -> Any:
117
Note: this cannot be done in the V3JsonEncoder because Python's `json.dumps` optimistically
118
converts NaN/Inf values to special types outside of the encoding step.
119
"""
120
- print(obj)
121
if isinstance(obj, float):
122
if np.isnan(obj):
123
return "NaN"
0 commit comments