There was an error while loading. Please reload this page.
1 parent 3f85df4 commit d2d1b49Copy full SHA for d2d1b49
pandas/core/apply.py
@@ -6,7 +6,7 @@
6
7
from pandas._config import option_context
8
9
-from pandas._typing import Axis, FrameOrSeriesUnion
+from pandas._typing import ApplyFuncType, Axis, FrameOrSeriesUnion
10
from pandas.util._decorators import cache_readonly
11
12
from pandas.core.dtypes.common import (
@@ -27,7 +27,7 @@
27
28
def frame_apply(
29
obj: "DataFrame",
30
- func,
+ func: ApplyFuncType,
31
axis: Axis = 0,
32
raw: bool = False,
33
result_type: Optional[str] = None,
0 commit comments