We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c5de3 commit 8382b0eCopy full SHA for 8382b0e
pandas/core/groupby.py
@@ -4634,7 +4634,7 @@ def _apply_to_column_groupbys(self, func):
4634
4635
def _fill(self, direction, limit=None):
4636
"""Overriden method to join grouped columns in output"""
4637
- res = super()._fill(direction, limit=limit)
+ res = super(DataFrameGroupBy, self)._fill(direction, limit=limit)
4638
output = collections.OrderedDict(
4639
(grp.name, grp.group_index.take(grp.labels)) for grp in
4640
self.grouper.groupings)
0 commit comments