Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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