Skip to content

Commit d27a6aa

Browse files
committed
Merge branch 'main' of https://github.com/zarr-developers/zarr-python into ruff_black_prelude
2 parents b0c50e1 + 1558041 commit d27a6aa

File tree

4 files changed

+253
-807
lines changed

4 files changed

+253
-807
lines changed

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Enhancements
3333
Maintenance
3434
~~~~~~~~~~~
3535

36+
* Refactor the core array tests to reduce code duplication.
37+
By :user:`Davis Bennett <d-v-b>` :issue:`1462`.
38+
3639
* Style the codebase with ``ruff`` and ``black``.
3740
By :user:`Davis Bennett` <d-v-b> :issue:`1459`
3841

zarr/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def _require_parent_group(
314314

315315
def init_array(
316316
store: StoreLike,
317-
shape: Tuple[int, ...],
317+
shape: Union[int, Tuple[int, ...]],
318318
chunks: Union[bool, int, Tuple[int, ...]] = True,
319319
dtype=None,
320320
compressor="default",

0 commit comments

Comments
 (0)