Skip to content

fix: replaced raise NotImplementedError with return NotImplemented #258

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
4 changes: 2 additions & 2 deletions third_party/bigframes_vendored/pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,13 +677,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,
Expand Down