Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: _validate_setitem_value fails to raise for PandasArray #55759

Closed
wants to merge 18 commits into from
Prev Previous commit
Next Next commit
#55753 Added comments in the function parameter
  • Loading branch information
hvsesha committed Oct 31, 2023
commit aebcb6721abbd298a64b4f5d62c24485debcc146
4 changes: 2 additions & 2 deletions pandas/core/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,8 +1020,8 @@ def wrapper(*args, **kwargs):
wrap_function(self.func),
self.axis,
self.values,
*self.args,
**self.kwargs,
*self.args,#Added args
**self.kwargs,#Added kwargs
)

# TODO: mixed type case
Expand Down
Loading