Skip to content

Commit

Permalink
Add missing override for remainder.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Feb 7, 2022
1 parent 311c278 commit 089caf3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/cudf/cudf/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,7 @@ def __array_ufunc__(self, ufunc, method, *inputs, **kwargs):
"floor_divide": "floordiv",
"power": "pow",
"float_power": "pow",
"remainder": "mod",
"mod": "mod",
"fmod": "mod",
# Bitwise binary operations.
Expand Down

0 comments on commit 089caf3

Please sign in to comment.