Skip to content

Commit fff210a

Browse files
committed
Merge remote-tracking branch 'upstream/master' into metadata-classes-v2
2 parents 4588c01 + 5c71212 commit fff210a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

requirements_dev_numpy.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Break this out into a separate file to allow testing against
22
# different versions of numpy. This file should pin to the latest
33
# numpy version.
4-
numpy==1.21.2
4+
numpy==1.21.3

zarr/_storage/store.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ class Store(BaseStore):
117117
.. added: 2.11.0
118118
119119
"""
120+
120121
def listdir(self, path: str = "") -> List[str]:
121122
path = normalize_storage_path(path)
122123
return _listdir_from_keys(self, path)

zarr/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2109,7 +2109,7 @@ class LRUStoreCache(Store):
21092109
"""
21102110

21112111
def __init__(self, store: StoreLike, max_size: int):
2112-
self._store: BaseStore = Store._ensure_store(store)
2112+
self._store: BaseStore = BaseStore._ensure_store(store)
21132113
self._max_size = max_size
21142114
self._current_size = 0
21152115
self._keys_cache = None

zarr/tests/test_storage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1936,7 +1936,6 @@ def test_migrate_1to2(dict_store):
19361936

19371937
# setup
19381938
store = dict() if dict_store else KVStore(dict())
1939-
19401939
meta = dict(
19411940
shape=(100,),
19421941
chunks=(10,),

0 commit comments

Comments
 (0)