From 49dceb2f12cfae6075f08fbeecff0ea690530235 Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Thu, 7 Sep 2023 19:08:09 +0200 Subject: [PATCH] (fix): `_to_backed` -> `to_backed` --- anndata/_core/sparse_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anndata/_core/sparse_dataset.py b/anndata/_core/sparse_dataset.py index 353b8d137..590008772 100644 --- a/anndata/_core/sparse_dataset.py +++ b/anndata/_core/sparse_dataset.py @@ -311,7 +311,7 @@ def __setitem__(self, index: Union[Index, Tuple[()]], value): PendingDeprecationWarning, ) row, col = self._normalize_index(index) - mock_matrix = self._to_backed() + mock_matrix = self.to_backed() mock_matrix[row, col] = value # TODO: split to other classes?