Fix some refactoring problems

This commit is contained in:
Matthias 2018-11-07 07:05:40 +01:00
parent 477515c4b5
commit 8044846d37
2 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ class Arguments(object):
'--customhyperopt',
help='specify hyperopt class name (default: %(default)s)',
dest='hyperopt',
default=Constants.DEFAULT_HYPEROPT,
default=constants.DEFAULT_HYPEROPT,
type=str,
metavar='NAME',
)

View File

@ -9,7 +9,7 @@ import logging
import os
from typing import Optional, Dict, Type
from freqtrade.constants import Constants
from freqtrade.constants import DEFAULT_HYPEROPT
from freqtrade.optimize.interface import IHyperOpt
@ -31,7 +31,7 @@ class HyperOptResolver(object):
config = config or {}
# Verify the hyperopt is in the configuration, otherwise fallback to the default hyperopt
hyperopt_name = config.get('hyperopt') or Constants.DEFAULT_HYPEROPT
hyperopt_name = config.get('hyperopt') or DEFAULT_HYPEROPT
self.hyperopt = self._load_hyperopt(hyperopt_name, extra_dir=config.get('hyperopt_path'))
def _load_hyperopt(