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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ node_modules/
.code-workspace

# test datasets (e.g. Xenium ones)
# symlinks
data
# data folder
data/
tests/data
2 changes: 1 addition & 1 deletion src/spatialdata_io/readers/visium.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def visium(
rgb=None,
)

return SpatialData(images=images, shapes=shapes, table=table)
return SpatialData(images=images, shapes=shapes, tables={"table": table})


def _read_image(image_file: Path, imread_kwargs: dict[str, Any]) -> Any:
Expand Down
Loading