diff --git a/src/contracting/stdlib/bridge/decimal.py b/src/contracting/stdlib/bridge/decimal.py index 356a9a30..67e7a23b 100644 --- a/src/contracting/stdlib/bridge/decimal.py +++ b/src/contracting/stdlib/bridge/decimal.py @@ -153,11 +153,11 @@ def __rtruediv__(self, other): def __divmod__(self, other): q, r = self._d.__divmod__(self._get_other(other)) - return (fix_precision(q), fix_precision(r)) + return fix_precision(q), fix_precision(r) def __rdivmod__(self, other): q, r = self._get_other(other).__divmod__(self._d) - return (fix_precision(q), fix_precision(r)) + return fix_precision(q), fix_precision(r) def __mod__(self, other): return fix_precision(self._d.__mod__(self._get_other(other)))