mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
6 lines
134 B
Python
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)
|