Skip to content

Commit

Permalink
[python] Unbreak CI with anndata=0.11 (#3305)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Nov 7, 2024
1 parent 9d93ac3 commit 208c0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/python/src/tiledbsoma/io/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 208c0ab

Please sign in to comment.