Skip to content

Commit

Permalink
FIX-#7379: Fix __imul__ performing addition instead of multiplication (
Browse files Browse the repository at this point in the history
…#7380)

Signed-off-by: Jonathan Shi <jhshi07@gmail.com>
  • Loading branch information
noloerino committed Sep 2, 2024
1 parent f70176a commit 5f4d401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modin/pandas/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def __rtruediv__(self, left) -> Series:
return self.rtruediv(left)

__iadd__ = __add__
__imul__ = __add__
__imul__ = __mul__
__ipow__ = __pow__
__isub__ = __sub__
__itruediv__ = __truediv__
Expand Down

0 comments on commit 5f4d401

Please sign in to comment.