Skip to content

Commit 31d7c10

Browse files
committed
Fixed check
1 parent 4b25163 commit 31d7c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sasdata/abscissa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def determine(axis_data: list[Quantity[ArrayLike]], ordinate_data: Quantity[Arra
8686
else:
8787
return ScatterAbscissa(axis_data)
8888
# 1b
89-
elif [len(axis.shape) == len(axis_arrays) for axis in axis_arrays] :
89+
elif all([len(axis.shape) == len(axis_arrays) for axis in axis_arrays]):
9090

9191
return MeshgridAbscissa(axis_data)
9292

0 commit comments

Comments
 (0)