We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81d328e commit 949061cCopy full SHA for 949061c
pandas/core/arrays/arrow/array.py
@@ -2743,14 +2743,7 @@ def _groupby_op(
2743
raise TypeError(
2744
f"dtype '{self.dtype}' does not support operation '{how}'"
2745
)
2746
- return super()._groupby_op(
2747
- how=how,
2748
- has_dropped_na=has_dropped_na,
2749
- min_count=min_count,
2750
- ngroups=ngroups,
2751
- ids=ids,
2752
- **kwargs,
2753
- )
+ # Fall through to Arrow-native path below
2754
2755
pa_type = self._pa_array.type
2756
0 commit comments