From d3cc427de9d4e5f03725d36b1ef171b8b24e5e7d Mon Sep 17 00:00:00 2001 From: fazledyn-or Date: Tue, 5 Dec 2023 16:54:55 +0600 Subject: [PATCH] Replaced `NotImplementedError` with `NotImplemented` Signed-off-by: fazledyn-or --- third_party/bigframes_vendored/pandas/core/series.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/bigframes_vendored/pandas/core/series.py b/third_party/bigframes_vendored/pandas/core/series.py index 6b8dd1d64d..9e6505b7d8 100644 --- a/third_party/bigframes_vendored/pandas/core/series.py +++ b/third_party/bigframes_vendored/pandas/core/series.py @@ -664,13 +664,13 @@ def __matmul__(self, other): """ Matrix multiplication using binary `@` operator in Python>=3.5. """ - raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE) + return NotImplemented def __rmatmul__(self, other): """ Matrix multiplication using binary `@` operator in Python>=3.5. """ - raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE) + return NotImplemented def sort_values( self,