Adjust improts to new exception location

This commit is contained in:
Matthias
2019-12-30 15:02:17 +01:00
parent 024aa3ab6b
commit 1ffda29fd2
44 changed files with 74 additions and 70 deletions

View File

@@ -4,17 +4,15 @@ This module defines the interface to apply for hyperopt
"""
import logging
import math
from abc import ABC
from typing import Dict, Any, Callable, List
from typing import Any, Callable, Dict, List
from skopt.space import Categorical, Dimension, Integer, Real
from freqtrade import OperationalException
from freqtrade.exceptions import OperationalException
from freqtrade.exchange import timeframe_to_minutes
from freqtrade.misc import round_dict
logger = logging.getLogger(__name__)