Skip to content

Commit 8382b0e

Browse files
committed
Py27 support with super call
1 parent 56c5de3 commit 8382b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4634,7 +4634,7 @@ def _apply_to_column_groupbys(self, func):
46344634

46354635
def _fill(self, direction, limit=None):
46364636
"""Overriden method to join grouped columns in output"""
4637-
res = super()._fill(direction, limit=limit)
4637+
res = super(DataFrameGroupBy, self)._fill(direction, limit=limit)
46384638
output = collections.OrderedDict(
46394639
(grp.name, grp.group_index.take(grp.labels)) for grp in
46404640
self.grouper.groupings)

0 commit comments

Comments
 (0)