Skip to content

Commit 32d1b6b

Browse files
committed
More cleanup
1 parent ee85e5a commit 32d1b6b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pandas/core/groupby/generic.py

-7
Original file line numberDiff line numberDiff line change
@@ -1436,13 +1436,6 @@ def _wrap_generic_output(self, result, obj):
14361436
else:
14371437
return DataFrame(result, index=obj.index, columns=result_index)
14381438

1439-
def _get_data_to_aggregate(self):
1440-
obj = self._obj_with_exclusions
1441-
if self.axis == 1:
1442-
return obj.T._data, 1
1443-
else:
1444-
return obj._data, 1
1445-
14461439
def _insert_inaxis_grouper_inplace(self, result):
14471440
# zip in reverse so we can always insert at loc 0
14481441
izip = zip(

0 commit comments

Comments
 (0)