diff --git a/pandas/core/apply.py b/pandas/core/apply.py index cccef939f94d4..da6526e13f0c6 100644 --- a/pandas/core/apply.py +++ b/pandas/core/apply.py @@ -734,12 +734,6 @@ def agg(self): result = None try: result = super().agg() - except TypeError as err: - exc = TypeError( - "DataFrame constructor called with " - f"incompatible data and dtype: {err}" - ) - raise exc from err finally: self.obj = obj self.axis = axis