Skip to content

Commit d9ed8e5

Browse files
authored
Update nwbinspector/checks/behavior.py
1 parent 0394a79 commit d9ed8e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nwbinspector/checks/behavior.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
@register_check(importance=Importance.CRITICAL, neurodata_type=SpatialSeries)
77
def check_spatial_series_dims(spatial_series: SpatialSeries):
88
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).")
9+
return InspectorMessage("SpatialSeries should have 1 column (x, ), 2 columns (x, y), or 3 columns (x, y, z).")

0 commit comments

Comments
 (0)