Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
normanrz committed Aug 13, 2024
1 parent 12d064c commit cd996f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zarrita/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def __init__(self, url: Union[UPath, str], **storage_options: Dict[str, Any]):
from upath import UPath

if isinstance(url, str):
self.root = UPath(url, storage_options=storage_options)
self.root = UPath(url, protocol=None, **storage_options)
else:
assert len(storage_options) == 0, (
"If constructed with a UPath object, no additional "
Expand Down

0 comments on commit cd996f0

Please sign in to comment.