Skip to content

Commit 5c9a2a1

Browse files
authored
Update io/_dask.py (#43)
1 parent f9982ff commit 5c9a2a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/fancypackage/io/_dask.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
from typing import Generator
44

55
import zarr
6-
from zarr.hierarchy import Group
6+
from zarr import Group as ZarrGroup
77

88
from anndata import AnnData
99
from anndata.experimental import read_elem_lazy
1010
from anndata.io import read_elem
1111

1212

13-
def _get_entries(group: Group, level: str, entries: str | list[str] | None) -> Generator | list[str]:
13+
def _get_entries(group: ZarrGroup, level: str, entries: str | list[str] | None) -> Generator | list[str]:
1414
"""Get entries of a Zarr group, potentially subsetted.
1515
1616
Parameters

0 commit comments

Comments
 (0)