diff --git a/pymath/fraction.py b/pymath/fraction.py index 187e703..1b1f976 100644 --- a/pymath/fraction.py +++ b/pymath/fraction.py @@ -211,9 +211,7 @@ class Fraction(object): return steps def __rmul__(self, other): - number = self.convert2fraction(other) - - return number * self + return self * other def __truediv__(self, other): if other == 0: