Skip to content

Commit 97ec062

Browse files
authored
CLN: remove unused variable (#35783)
1 parent 66e83cc commit 97ec062

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/groupby/generic.py

-2
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,6 @@ def _cython_agg_blocks(
10311031
data = data.get_numeric_data(copy=False)
10321032

10331033
agg_blocks: List["Block"] = []
1034-
deleted_items: List[np.ndarray] = []
10351034

10361035
no_result = object()
10371036

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

0 commit comments

Comments
 (0)