PEP8 correction

This commit is contained in:
Fredrik81 2020-02-20 19:18:42 +01:00
parent e7b12704de
commit 09226fd5d5
1 changed files with 2 additions and 1 deletions

View File

@ -787,7 +787,8 @@ def test_hyperopt_list(mocker, capsys, hyperopt_results):
start_hyperopt_list(pargs)
captured = capsys.readouterr()
assert all(x in captured.out
for x in [" 2/12", " 10/12", "Best result:", "Buy hyperspace params", "Sell hyperspace params", "ROI table", "Stoploss"])
for x in [" 2/12", " 10/12", "Best result:", "Buy hyperspace params",
"Sell hyperspace params", "ROI table", "Stoploss"])
assert all(x not in captured.out
for x in [" 1/12", " 3/12", " 4/12", " 5/12", " 6/12", " 7/12", " 8/12", " 9/12",
" 11/12", " 12/12"])