We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
io/_dask.py
1 parent f9982ff commit 5c9a2a1Copy full SHA for 5c9a2a1
1 file changed
src/fancypackage/io/_dask.py
@@ -3,14 +3,14 @@
3
from typing import Generator
4
5
import zarr
6
-from zarr.hierarchy import Group
+from zarr import Group as ZarrGroup
7
8
from anndata import AnnData
9
from anndata.experimental import read_elem_lazy
10
from anndata.io import read_elem
11
12
13
-def _get_entries(group: Group, level: str, entries: str | list[str] | None) -> Generator | list[str]:
+def _get_entries(group: ZarrGroup, level: str, entries: str | list[str] | None) -> Generator | list[str]:
14
"""Get entries of a Zarr group, potentially subsetted.
15
16
Parameters
0 commit comments