Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/anndata/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def __call__(
store
The store to which `elem` should be written.
elem_name
The key to read in from the group.
The key to write out to the group.
elem
The element to write out.
iospec
Expand Down
1 change: 0 additions & 1 deletion tests/accessors/test_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ def conv(v: InMemoryArray) -> InMemoryArray:
v = v.toarray()
return array_conv(v)

adata.X = conv(adata.X)
for k, v in adata.layers.items():
adata.layers[k] = conv(v)
for k, v in adata.varm.items():
Expand Down
Loading