Skip to content

Commit d3379b4

Browse files
committed
docs(v3/store/core.py): clearer comment
1 parent 94972d6 commit d3379b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/zarr/v3/store/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self, store: Store, path: Optional[str] = None):
2626

2727
@classmethod
2828
def from_path(cls, pth: Path) -> StorePath:
29-
# This is instantiating an ABC + there is no from_path method
29+
# NOT SOLVED: This is instantiating an ABC + there is no from_path method
3030
return cls(Store.from_path(pth)) # type: ignore
3131

3232
async def get(
@@ -77,7 +77,7 @@ def make_store_path(store_like: StoreLike) -> StorePath:
7777
try:
7878
from upath import UPath
7979

80-
# Similar here, ABC instantiation + no from_path method
80+
# NOT SOLVED: Similar here, ABC instantiation + no from_path method
8181
return StorePath(Store.from_path(UPath(store_like))) # type: ignore
8282
except ImportError as e:
8383
raise e

0 commit comments

Comments
 (0)