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 4cb240d commit 97d9063Copy full SHA for 97d9063
pandas/core/apply.py
@@ -189,7 +189,7 @@ def map(
189
func,
190
args: tuple,
191
kwargs: dict,
192
- engine_kwargs: dict | None,
+ decorator: Callable | None,
193
skip_na: bool,
194
):
195
"""
@@ -203,7 +203,7 @@ def apply(
203
204
205
206
+ decorator: Callable,
207
axis: int | str,
208
209
@@ -222,7 +222,7 @@ def apply(
222
# list[Callable[..., Any] | str]]"; expected "Hashable"
223
nb_looper = generate_apply_looper(
224
func, # type: ignore[arg-type]
225
- **get_jit_arguments(engine_kwargs),
+ **get_jit_arguments(decorator),
226
)
227
result = nb_looper(data, axis, *looper_args)
228
# If we made the result 2-D, squeeze it back to 1-D
0 commit comments