Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply ruff/pygrep-hooks rule PGH003
PGH003 Use specific rule codes when ignoring type issues
  • Loading branch information
DimitriPapadopoulos committed Sep 24, 2024
commit 26d17cb9203df8d1c2c920c7f9509080f6a02a5d
4 changes: 2 additions & 2 deletions tests/v3/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def test_group_members(store: Store, zarr_format: ZarrFormat) -> None:
members_expected["subgroup"] = group.create_group("subgroup")
# make a sub-sub-subgroup, to ensure that the children calculation doesn't go
# too deep in the hierarchy
subsubgroup = members_expected["subgroup"].create_group("subsubgroup") # type: ignore
subsubsubgroup = subsubgroup.create_group("subsubsubgroup") # type: ignore
subsubgroup = members_expected["subgroup"].create_group("subsubgroup")
subsubsubgroup = subsubgroup.create_group("subsubsubgroup")

members_expected["subarray"] = group.create_array(
"subarray", shape=(100,), dtype="uint8", chunk_shape=(10,), exists_ok=True
Expand Down