Skip to content

Commit a681c2d

Browse files
committed
fixed the overload pyright error
1 parent 68a3b81 commit a681c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/multi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3808,7 +3808,7 @@ def searchsorted(
38083808
self,
38093809
value: NumpyValueArrayLike | ExtensionArray,
38103810
side: Literal["left", "right"] = "left",
3811-
sorter: npt.NDArray[np.intp] | None = None,
3811+
sorter: NumpySorter | None = None,
38123812
) -> npt.NDArray[np.intp] | np.intp:
38133813
"""
38143814
Find the indices where elements should be inserted to maintain order.

0 commit comments

Comments
 (0)