File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -412,10 +412,11 @@ def func(yvalues: np.ndarray) -> None:
412412 mask = mask ,
413413 ** kwargs ,
414414 )
415- # error: No overload variant of "apply_along_axis" matches
416- # argument types "Callable[[ndarray[Any, Any]], None]",
417- # "int", "ndarray[Any, Any]"
418- np .apply_along_axis (func , axis , data ) # type: ignore[call-overload]
415+
416+ # error: No overload variant of "apply_along_axis" matches
417+ # argument types "Callable[[ndarray[Any, Any]], None]",
418+ # "int", "ndarray[Any, Any]"
419+ np .apply_along_axis (func , axis , data ) # type: ignore[call-overload]
419420
420421
421422def _index_to_interp_indices (index : Index , method : str ) -> np .ndarray :
Original file line number Diff line number Diff line change @@ -917,7 +917,7 @@ def get_handle(
917917 encoding = ioargs .encoding ,
918918 errors = errors ,
919919 newline = "" ,
920- ) # type: ignore[arg-type]
920+ )
921921 handles .append (handle )
922922 # only marked as wrapped when the caller provided a handle
923923 is_wrapped = not (
You can’t perform that action at this time.
0 commit comments