Skip to content

Commit f105f5f

Browse files
committed
mypy plus notebook pointer
1 parent cb1d0d5 commit f105f5f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/tutorials/notebooks

Submodule notebooks updated 164 files

src/spatialdata/_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
from contextlib import contextmanager
44
from dataclasses import dataclass, replace
55
from pathlib import Path
6-
from typing import Any
6+
from typing import Any, TypeAlias
77

88
import pyarrow.fs as pafs
99
import zarr
1010
from upath import UPath
1111
from zarr.storage import FsspecStore, LocalStore
1212

13-
PathLike = Path | UPath
13+
PathLike: TypeAlias = Path | UPath
1414

1515

1616
def _normalize_path(path: str | PathLike, storage_options: dict[str, Any] | None = None) -> PathLike:

0 commit comments

Comments
 (0)