Skip to content

Commit 334e55c

Browse files
style: pre-commit fixes
1 parent 4e5646c commit 334e55c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_properties.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
import hypothesis.extra.numpy as npst
1515
import hypothesis.strategies as st
16-
from hypothesis import assume, given, settings, HealthCheck
16+
from hypothesis import HealthCheck, assume, given, settings
1717

1818
from zarr.abc.store import Store
1919
from zarr.core.common import ZARR_JSON, ZARRAY_JSON, ZATTRS_JSON
@@ -75,6 +75,7 @@ def deep_equal(a: Any, b: Any) -> bool:
7575

7676
return a == b
7777

78+
7879
@settings(deadline=None) # Increased from default 200ms to None
7980
@given(data=st.data(), zarr_format=zarr_formats)
8081
def test_array_roundtrip(data: st.DataObject, zarr_format: int) -> None:
@@ -148,8 +149,7 @@ def test_vindex(data: st.DataObject) -> None:
148149

149150
indexer = data.draw(
150151
npst.integer_array_indices(
151-
shape=nparray.shape,
152-
result_shape=npst.array_shapes(min_side=1, max_dims=2, max_side=8)
152+
shape=nparray.shape, result_shape=npst.array_shapes(min_side=1, max_dims=2, max_side=8)
153153
)
154154
)
155155
actual = zarray.vindex[indexer]

0 commit comments

Comments
 (0)