Skip to content

Commit aad5ca1

Browse files
committed
correct _parse_keep_array_attr
1 parent c499b78 commit aad5ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/core/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4478,7 +4478,7 @@ def _parse_keep_array_attr(
44784478
]:
44794479
if isinstance(data, Array):
44804480
if chunks == "keep":
4481-
parsed_chunks = data.chunks
4481+
chunks = data.chunks
44824482
if shards == "keep":
44834483
shards = data.shards
44844484
if zarr_format is None:

0 commit comments

Comments
 (0)