Skip to content

Commit 8c8f78d

Browse files
Update zarr/core.py
Co-Authored-By: James Bourbeau <[email protected]>
1 parent e5814e5 commit 8c8f78d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarr/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ def _resize_nosync(self, *args):
20082008

20092009
# determine the new number and arrangement of chunks
20102010
chunks = self._chunks
2011-
new_cdata_shape = tuple(int(math.ceil(s / c))
2011+
new_cdata_shape = tuple(math.ceil(s / c)
20122012
for s, c in zip(new_shape, chunks))
20132013

20142014
# remove any chunks not within range

0 commit comments

Comments
 (0)