Skip to content

Commit 949061c

Browse files
committed
let string type fall through
1 parent 81d328e commit 949061c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2743,14 +2743,7 @@ def _groupby_op(
27432743
raise TypeError(
27442744
f"dtype '{self.dtype}' does not support operation '{how}'"
27452745
)
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-
)
2746+
# Fall through to Arrow-native path below
27542747

27552748
pa_type = self._pa_array.type
27562749

0 commit comments

Comments
 (0)