Files
pretix_original/src/pretix/base/decimal.py
T

6 lines
134 B
Python

from decimal import ROUND_HALF_UP, Decimal
def round_decimal(dec):
return Decimal(dec).quantize(Decimal('0.01'), ROUND_HALF_UP)