We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e103d74 commit c9fcf8fCopy full SHA for c9fcf8f
tests/test_attributes.py
@@ -66,6 +66,7 @@ def test_update_no_changes() -> None:
66
@pytest.mark.parametrize("group", [True, False])
67
def test_del_works(group: bool) -> None:
68
store = zarr.storage.MemoryStore()
69
+ z: zarr.Group | zarr.Array
70
if group:
71
z = zarr.create_group(store)
72
else:
@@ -75,6 +76,7 @@ def test_del_works(group: bool) -> None:
75
76
del z.attrs["a"]
77
assert dict(z.attrs) == {"c": 4}
78
79
+ z2: zarr.Group | zarr.Array
80
81
z2 = zarr.open_group(store)
82
0 commit comments