Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed codec for v2 data with no fill value
  • Loading branch information
TomAugspurger committed Sep 18, 2024
commit 129d24721d13a7b5e38aecccbdf7d50d65d61c83
2 changes: 1 addition & 1 deletion src/zarr/core/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ async def _create_v2(
chunks=chunks,
order=order,
dimension_separator=dimension_separator,
fill_value=fill_value,
fill_value=0 if fill_value is None else fill_value,
compressor=compressor,
filters=filters,
attributes=attributes,
Expand Down