From 9f7c4d816d8164a49666829fecb8f8e64e7cc8ec Mon Sep 17 00:00:00 2001 From: Michael Rocchio Date: Thu, 5 May 2022 20:36:36 -0500 Subject: [PATCH] changing boolean.py is_numeric --- pandas/core/arrays/boolean.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/arrays/boolean.py b/pandas/core/arrays/boolean.py index 35b9de3f7af93..626e46483b14d 100644 --- a/pandas/core/arrays/boolean.py +++ b/pandas/core/arrays/boolean.py @@ -99,7 +99,7 @@ def _is_boolean(self) -> bool: @property def _is_numeric(self) -> bool: - return True + return False def __from_arrow__( self, array: pyarrow.Array | pyarrow.ChunkedArray