8000 BUG: Fix agg ingore arg/kwargs when given list like func by luke396 · Pull Request #50863 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Delete blank line
  • Loading branch information
luke committed Feb 3, 2023
commit 1d46712eca8d2395a8b9ae337452004ad420763f
1 change: 0 additions & 1 deletion pandas/core/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ def agg_list_like(self) -> DataFrame | Series:
else:
context_manager = nullcontext()
with context_manager:

# degenerate case
if selected_obj.ndim == 1:

Expand Down
0