Skip to content

Commit 03b1f19

Browse files
authored
CLN: remove unnecessary values_from_objects in groupby.ops (#32547)
1 parent b8ee1e1 commit 03b1f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/ops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def indices(self):
217217
return self.groupings[0].indices
218218
else:
219219
codes_list = [ping.codes for ping in self.groupings]
220-
keys = [com.values_from_object(ping.group_index) for ping in self.groupings]
220+
keys = [ping.group_index for ping in self.groupings]
221221
return get_indexer_dict(codes_list, keys)
222222

223223
@property

0 commit comments

Comments
 (0)