Wrap Precise into FtPecise

This commit is contained in:
Matthias
2022-08-10 11:26:06 +00:00
parent adc8ee88e2
commit e7cb1b7375
4 changed files with 41 additions and 30 deletions

View File

@@ -1,2 +1,3 @@
# flake8: noqa: F401
from freqtrade.util.ft_precise import FtPrecise
from freqtrade.util.periodic_cache import PeriodicCache

View File

@@ -0,0 +1,9 @@
"""
Slim wrapper around ccxt's Precise (string math)
To have imports from freqtrade
"""
from ccxt import Precise
class FtPrecise(Precise):
pass