From e81d155d0b1faa5ee90baf29154ed48c5aa6a042 Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Tue, 1 Oct 2024 13:58:27 +0200 Subject: [PATCH] (fix): docstring class --- src/anndata/experimental/backed/_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anndata/experimental/backed/_io.py b/src/anndata/experimental/backed/_io.py index 427ecf77b..018e9a5c5 100644 --- a/src/anndata/experimental/backed/_io.py +++ b/src/anndata/experimental/backed/_io.py @@ -33,7 +33,7 @@ def read_lazy( store A store-like object to be read in. If :class:`zarr.hierarchy.Group`, it is best for it to be consolidated. load_annotation_index - Whether or not to use a range index for the `{obs,var}` :class:`xr.Dataset` so as not to load the index into memory. + Whether or not to use a range index for the `{obs,var}` :class:`xarray.Dataset` so as not to load the index into memory. If `False`, the real `index` will be inserted as `{obs,var}_names` in the object but not be one of the `coords` thereby preventing read operations. Returns