run linter

This commit is contained in:
kevinjulian
2021-07-20 23:56:03 +07:00
parent 5d04d6ffa7
commit 66a7070170
7 changed files with 36 additions and 10 deletions

View File

@@ -1185,8 +1185,10 @@ def test_api_plot_config(botclient):
assert_response(rc)
assert rc.json() == {}
freqtrade.strategy.plot_config = {'main_plot': {'sma': {}},
'subplots': {'RSI': {'rsi': {'color': 'red'}}}}
freqtrade.strategy.plot_config = {
'main_plot': {'sma': {}},
'subplots': {'RSI': {'rsi': {'color': 'red'}}}
}
rc = client_get(client, f"{BASE_URI}/plot_config")
assert_response(rc)
assert rc.json() == freqtrade.strategy.plot_config