We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e793a1b + 20ca630 commit 5ea8189Copy full SHA for 5ea8189
.gitignore
@@ -36,5 +36,8 @@ node_modules/
36
.code-workspace
37
38
# test datasets (e.g. Xenium ones)
39
+# symlinks
40
+data
41
+# data folder
42
data/
43
tests/data
src/spatialdata_io/readers/visium.py
@@ -253,7 +253,7 @@ def visium(
253
rgb=None,
254
)
255
256
- return SpatialData(images=images, shapes=shapes, table=table)
+ return SpatialData(images=images, shapes=shapes, tables={"table": table})
257
258
259
def _read_image(image_file: Path, imread_kwargs: dict[str, Any]) -> Any:
0 commit comments