remove unused imports

This commit is contained in:
Matthias 2018-12-13 06:37:07 +01:00
parent 17a820e5c0
commit 407139b0e0
2 changed files with 1 additions and 4 deletions

View File

@ -13,7 +13,6 @@ import os
from typing import Optional, List, Dict, Tuple, Any from typing import Optional, List, Dict, Tuple, Any
import arrow import arrow
from pandas import DataFrame
from freqtrade import misc, constants, OperationalException from freqtrade import misc, constants, OperationalException
from freqtrade.exchange import Exchange from freqtrade.exchange import Exchange

View File

@ -2,14 +2,12 @@
import logging import logging
from datetime import datetime from datetime import datetime
from typing import List, Dict, Tuple from typing import Dict, Tuple
import operator import operator
import arrow import arrow
from pandas import DataFrame from pandas import DataFrame
from freqtrade.arguments import TimeRange
from freqtrade.optimize.default_hyperopt import DefaultHyperOpts # noqa: F401 from freqtrade.optimize.default_hyperopt import DefaultHyperOpts # noqa: F401
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)