Skip to content

Commit 1b74680

Browse files
committed
Add numpy definition for bool array
1 parent f1b5c48 commit 1b74680

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

singlestoredb/functions/typing/numpy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
BytesArray = npt.NDArray[np.bytes_]
88
Float32Array = FloatArray = npt.NDArray[np.float32]
99
Float64Array = DoubleArray = npt.NDArray[np.float64]
10+
BoolArray = npt.NDArray[np.bool_]
1011
IntArray = npt.NDArray[np.int_]
1112
Int8Array = npt.NDArray[np.int8]
1213
Int16Array = npt.NDArray[np.int16]

0 commit comments

Comments
 (0)