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 e2811ca commit 07c11d9Copy full SHA for 07c11d9
zarr/convenience.py
@@ -73,6 +73,8 @@ def open(store=None, mode='a', **kwargs):
73
path = kwargs.get('path', None)
74
# handle polymorphic store arg
75
clobber = mode == 'w'
76
+ # we pass storage options explicitly, since normalize_store_arg might construct
77
+ # a store if the input is a fsspec-compatible URL
78
store = normalize_store_arg(store, clobber=clobber,
79
storage_options=kwargs.pop("storage_options", {}))
80
path = normalize_storage_path(path)
0 commit comments