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 4b25163 commit 31d7c10Copy full SHA for 31d7c10
sasdata/abscissa.py
@@ -86,7 +86,7 @@ def determine(axis_data: list[Quantity[ArrayLike]], ordinate_data: Quantity[Arra
86
else:
87
return ScatterAbscissa(axis_data)
88
# 1b
89
- elif [len(axis.shape) == len(axis_arrays) for axis in axis_arrays] :
+ elif all([len(axis.shape) == len(axis_arrays) for axis in axis_arrays]):
90
91
return MeshgridAbscissa(axis_data)
92
0 commit comments