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
import arrow
from pandas import DataFrame
from freqtrade import misc, constants, OperationalException
from freqtrade.exchange import Exchange

View File

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