reorganize imports

This commit is contained in:
iuvbio 2019-02-22 21:16:31 +01:00
parent cc0fae8e4e
commit 98bca30dfb

View File

@ -3,13 +3,16 @@ Static List provider
Provides lists as configured in config.json Provides lists as configured in config.json
""" """
import logging import logging
from typing import List from typing import List
from cachetools import TTLCache, cached from cachetools import TTLCache, cached
from freqtrade.pairlist.IPairList import IPairList from freqtrade.pairlist.IPairList import IPairList
from freqtrade import OperationalException from freqtrade import OperationalException
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
SORT_VALUES = ['askVolume', 'bidVolume', 'quoteVolume'] SORT_VALUES = ['askVolume', 'bidVolume', 'quoteVolume']