Feat: allowing to import Decimal

This commit is contained in:
2019-10-14 22:22:08 +02:00
parent 12109156d1
commit 2d296cf1d2
3 changed files with 3 additions and 3 deletions

View File

@@ -110,7 +110,7 @@ x^7
"""
from .expression import Expression
from .tokens.number import Integer
from .tokens.number import Integer, Decimal
if __name__ == "__main__":
e = Expression.from_str("1+2/3/4/5")