remove float

This commit is contained in:
Ludovic Stephan 2016-11-23 01:43:24 -02:00
parent 98886f422a
commit 746f16f57d

View file

@ -38,5 +38,4 @@ def highlight_clipper(clipper, q):
@register.filter()
def ukf(balance, is_cof):
grant = is_cof and (1 + Settings.SUBVENTION_COF() / 100) or 1
# float nécessaire car sinon problème avec le round de future.builtins
return floor(float(balance * 10 * grant))
return floor(balance * 10 * grant)