Skip to content

Commit 7b46b3f

Browse files
committed
remove meta check altogether from the v2 branch as it is v3-specific
1 parent 2812c5c commit 7b46b3f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

zarr/hierarchy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,6 @@ def _array_iter(self, keys_only, method, recurse):
600600
if self._version == 2:
601601
for key in sorted(listdir(self._store, self._path)):
602602
path = self._key_prefix + key
603-
assert not path.startswith("meta/")
604603
if contains_array(self._store, path):
605604
_key = key.rstrip("/")
606605
yield _key if keys_only else (_key, self[key])

0 commit comments

Comments
 (0)