Skip to content

Commit 118304a

Browse files
committed
Lint
1 parent e3c7659 commit 118304a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/zarr/core/group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3458,7 +3458,7 @@ def _build_metadata_v3(zarr_json: dict[str, JSON]) -> ArrayV3Metadata | GroupMet
34583458

34593459

34603460
def _build_metadata_v2(
3461-
zarr_json: dict[str, object], attrs_json: dict[str, JSON]
3461+
zarr_json: dict[str, JSON], attrs_json: dict[str, JSON]
34623462
) -> ArrayV2Metadata | GroupMetadata:
34633463
"""
34643464
Convert a dict representation of Zarr V2 metadata into the corresponding metadata class.

src/zarr/testing/strategies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import hypothesis.extra.numpy as npst
66
import hypothesis.strategies as st
77
import numpy as np
8-
from hypothesis import event, given, settings # noqa: F401
8+
from hypothesis import event
99
from hypothesis.strategies import SearchStrategy
1010

1111
import zarr

tests/test_properties.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import dataclasses
22
import json
33
import numbers
4+
45
import numpy as np
56
import pytest
67
from numpy.testing import assert_array_equal

0 commit comments

Comments
 (0)