Files
api2/api/lib/utils.py
T

6 lines
125 B
Python

from decimal import Decimal, ROUND_HALF_UP
def round_half_up(val):
return int(Decimal(val).quantize(0, ROUND_HALF_UP))