Skip to content

Commit cd996f0

Browse files
committed
fix
1 parent 12d064c commit cd996f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarrita/store.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def __init__(self, url: Union[UPath, str], **storage_options: Dict[str, Any]):
270270
from upath import UPath
271271

272272
if isinstance(url, str):
273-
self.root = UPath(url, storage_options=storage_options)
273+
self.root = UPath(url, protocol=None, **storage_options)
274274
else:
275275
assert len(storage_options) == 0, (
276276
"If constructed with a UPath object, no additional "

0 commit comments

Comments
 (0)