Skip to content

Commit 322acf7

Browse files
committed
normalize paths in storepath constructor
1 parent c0feec5 commit 322acf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zarr/storage/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class StorePath:
4141

4242
def __init__(self, store: Store, path: str = "") -> None:
4343
self.store = store
44-
self.path = path
44+
self.path = normalize_path(path)
4545

4646
@property
4747
def read_only(self) -> bool:

0 commit comments

Comments
 (0)