From 208c0abaeda6e1820761ec69a761d3af91465526 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Thu, 7 Nov 2024 14:42:36 -0500 Subject: [PATCH] [python] Unbreak CI with `anndata=0.11` (#3305) --- apis/python/src/tiledbsoma/io/ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/python/src/tiledbsoma/io/ingest.py b/apis/python/src/tiledbsoma/io/ingest.py index 0b2b0bf8ae..8a4c431bf3 100644 --- a/apis/python/src/tiledbsoma/io/ingest.py +++ b/apis/python/src/tiledbsoma/io/ingest.py @@ -2257,7 +2257,7 @@ def _coo_to_table( if sp.isspmatrix_csc(matrix): # E.g. if we used anndata.X[:] stride_axis = 1 - if isinstance(matrix, CSCDataset) and matrix.format_str == "csc": + if isinstance(matrix, CSCDataset): # E.g. if we used anndata.X without the [:] stride_axis = 1