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.
1 parent 0394a79 commit d9ed8e5Copy full SHA for d9ed8e5
nwbinspector/checks/behavior.py
@@ -6,4 +6,4 @@
6
@register_check(importance=Importance.CRITICAL, neurodata_type=SpatialSeries)
7
def check_spatial_series_dims(spatial_series: SpatialSeries):
8
if len(spatial_series.data.shape) > 1 and spatial_series.data.shape[1] > 3:
9
- return InspectorMessage("SpatialSeries should have either 2 columns (x,y) or 3 columns (x,y,z).")
+ return InspectorMessage("SpatialSeries should have 1 column (x, ), 2 columns (x, y), or 3 columns (x, y, z).")
0 commit comments