Don't change passed in parameter variable
This commit is contained in:
parent
bb472ff98b
commit
123971d271
@ -223,11 +223,11 @@ def list_strategies(config=Depends(get_config)):
|
|||||||
@router.get('/strategy/{strategy}', response_model=StrategyResponse, tags=['strategy'])
|
@router.get('/strategy/{strategy}', response_model=StrategyResponse, tags=['strategy'])
|
||||||
def get_strategy(strategy: str, config=Depends(get_config)):
|
def get_strategy(strategy: str, config=Depends(get_config)):
|
||||||
|
|
||||||
config = deepcopy(config)
|
config_ = deepcopy(config)
|
||||||
from freqtrade.resolvers.strategy_resolver import StrategyResolver
|
from freqtrade.resolvers.strategy_resolver import StrategyResolver
|
||||||
try:
|
try:
|
||||||
strategy_obj = StrategyResolver._load_strategy(strategy, config,
|
strategy_obj = StrategyResolver._load_strategy(strategy, config_,
|
||||||
extra_dir=config.get('strategy_path'))
|
extra_dir=config_.get('strategy_path'))
|
||||||
except OperationalException:
|
except OperationalException:
|
||||||
raise HTTPException(status_code=404, detail='Strategy not found')
|
raise HTTPException(status_code=404, detail='Strategy not found')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user