Skip to content
Merged
Changes from all commits
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
2 changes: 0 additions & 2 deletions pandas/core/groupby/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,6 @@ def _cython_agg_blocks(
data = data.get_numeric_data(copy=False)

agg_blocks: List["Block"] = []
deleted_items: List[np.ndarray] = []

no_result = object()

Expand Down Expand Up @@ -1133,7 +1132,6 @@ def blk_func(block: "Block") -> List["Block"]:
# continue and exclude the block
# NotImplementedError -> "ohlc" with wrong dtype
skipped.append(i)
deleted_items.append(block.mgr_locs.as_array)
else:
agg_blocks.extend(nbs)

Expand Down