Skip to content

Commit e70c4b1

Browse files
authored
set normalize_keys=False in fsstore constructor (#842)
1 parent 78eb8b7 commit e70c4b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarr/storage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ class FSStore(MutableMapping):
10691069
_group_meta_key = group_meta_key
10701070
_attrs_key = attrs_key
10711071

1072-
def __init__(self, url, normalize_keys=True, key_separator=None,
1072+
def __init__(self, url, normalize_keys=False, key_separator=None,
10731073
mode='w',
10741074
exceptions=(KeyError, PermissionError, IOError),
10751075
dimension_separator=None,

0 commit comments

Comments
 (0)