diff --git a/fournée/core/utils.py b/fournée/core/utils.py index 2087473..60d8bd1 100644 --- a/fournée/core/utils.py +++ b/fournée/core/utils.py @@ -2,6 +2,8 @@ from decimal import Decimal def clean(d): + if type(d) == int: + return d if d == d.to_integral(): return d.quantize(Decimal(1)) else: