Feat: remove precision setting for Decimal

This commit is contained in:
Bertrand Benjamin 2019-10-15 19:41:09 +02:00
parent 0c84c63ad3
commit c211ed1591
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ Expression is the classe wich handle all calculus. It can randomly generate or i
"""
from .API import Expression, Integer, Decimal
from decimal import getcontext
#getcontext().prec = 2
__all__ = ["Expression"]