Skip to content

Commit 468b65e

Browse files
Apply ruff rule RUF100
RUF100 Unused `noqa` directive (unused: `E402`) Otherwise, latest ruff 0.9.1 complains.
1 parent 168999c commit 468b65e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_properties.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
pytest.importorskip("hypothesis")
66

7-
import hypothesis.extra.numpy as npst # noqa: E402
8-
import hypothesis.strategies as st # noqa: E402
9-
from hypothesis import given # noqa: E402
7+
import hypothesis.extra.numpy as npst
8+
import hypothesis.strategies as st
9+
from hypothesis import given
1010

11-
from zarr.testing.strategies import arrays, basic_indices, numpy_arrays, zarr_formats # noqa: E402
11+
from zarr.testing.strategies import arrays, basic_indices, numpy_arrays, zarr_formats
1212

1313

1414
@given(data=st.data(), zarr_format=zarr_formats)

0 commit comments

Comments
 (0)