You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# spatialdata/_core/spatialdata.py:737table=_filter_table_by_element_names(table, element_names) # table is None and has no leniflen(table) !=0:
# TypeError: object of type 'NoneType' has no len()
To reproduce:
importspatialdataassdimportanndataasadfromspatialdata.datasetsimportblobssdata=blobs()
sdata.tables['table2'] =sd.models.TableModel.parse(ad.AnnData((10, 10)))
sdata.write('test.zarr')
# Open in napari-spatialdata, click on coordinate-system global, get error
The text was updated successfully, but these errors were encountered:
Filtering does not work if an extra table is present not related to an element (which is a use case to save analysis results).
which calls:
To reproduce:
The text was updated successfully, but these errors were encountered: