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 cbe1a9c commit 1a4cd40Copy full SHA for 1a4cd40
pandas/core/missing.py
@@ -412,8 +412,10 @@ def func(yvalues: np.ndarray) -> None:
412
mask=mask,
413
**kwargs,
414
)
415
-
416
- np.apply_along_axis(func, axis, data)
+ # error: No overload variant of "apply_along_axis" matches
+ # argument types "Callable[[ndarray[Any, Any]], None]",
417
+ # "int", "ndarray[Any, Any]"
418
+ np.apply_along_axis(func, axis, data) # type: ignore[call-overload]
419
420
421
def _index_to_interp_indices(index: Index, method: str) -> np.ndarray:
0 commit comments