We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb1d0d5 commit e6fba59Copy full SHA for e6fba59
src/spatialdata/_store.py
@@ -3,14 +3,14 @@
3
from contextlib import contextmanager
4
from dataclasses import dataclass, replace
5
from pathlib import Path
6
-from typing import Any
+from typing import Any, TypeAlias
7
8
import pyarrow.fs as pafs
9
import zarr
10
from upath import UPath
11
from zarr.storage import FsspecStore, LocalStore
12
13
-PathLike = Path | UPath
+PathLike: TypeAlias = Path | UPath
14
15
16
def _normalize_path(path: str | PathLike, storage_options: dict[str, Any] | None = None) -> PathLike:
0 commit comments