Skip to content

Commit f3e2e2d

Browse files
committed
(fix): lint
1 parent 2090b98 commit f3e2e2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/user-guide/v3_migration.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ of Zarr-Python, please open (or comment on) a
202202
- The following features that were supported by Zarr-Python 2 have not been ported
203203
to Zarr-Python 3 yet:
204204

205-
* Structured arrays / dtypes (:issue:`2134`)
206205
* Fixed-length string dtypes (:issue:`2347`)
207206
* Datetime and timedelta dtypes (:issue:`2616`)
208207
* Object dtypes (:issue:`2617`)

tests/test_v2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,11 @@ def test_default_filters_and_compressor(dtype_expected: Any) -> None:
244244
if expected_filter is not None:
245245
assert arr.metadata.filters[0].codec_id == expected_filter
246246

247+
247248
def test_structured_dtype() -> None:
248249
a = np.array(
249250
[(b"aaa", 1, 4.2), (b"bbb", 2, 8.4), (b"ccc", 3, 12.6)],
250251
dtype=[("foo", "S3"), ("bar", "i4"), ("baz", "f8")],
251252
)
252253
za = zarr.array(a, chunks=2, fill_value=None, zarr_format=2)
253-
assert (a == za[:]).all()
254+
assert (a == za[:]).all()

0 commit comments

Comments
 (0)