chore: remove some unused noqa's

This commit is contained in:
Matthias
2025-04-09 19:51:38 +02:00
parent 1d9d2fce7f
commit b797a5bf2f
5 changed files with 49 additions and 49 deletions

View File

@@ -688,7 +688,7 @@ def test_print_json_spaces_all(mocker, hyperopt_conf, capsys) -> None:
'{"params":{"mfi-value":null,"sell-mfi-value":null},"minimal_roi"'
':{},"stoploss":null,"trailing_stop":null,"max_open_trades":null}'
)
assert result_str in out # noqa: E501
assert result_str in out
# Should be called for historical candle data
assert dumper.call_count == 1
assert dumper2.call_count == 1
@@ -745,7 +745,7 @@ def test_print_json_spaces_default(mocker, hyperopt_conf, capsys) -> None:
assert (
'{"params":{"mfi-value":null,"sell-mfi-value":null},"minimal_roi":{},"stoploss":null}'
in out
) # noqa: E501
)
# Should be called for historical candle data
assert dumper.call_count == 1
assert dumper2.call_count == 1