Skip to content

Commit e5814e5

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

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
@@ -356,7 +356,7 @@ def _cdata_shape(self):
356356
if self._shape == ():
357357
return 1,
358358
else:
359-
return tuple(int(math.ceil(s / c))
359+
return tuple(math.ceil(s / c)
360360
for s, c in zip(self._shape, self._chunks))
361361

362362
@property

0 commit comments

Comments
 (0)