Fix minor stylistic errors

This commit is contained in:
Matthias
2023-02-22 20:58:24 +01:00
parent 659140e190
commit 34c42be74f
11 changed files with 3 additions and 4 deletions

View File

@@ -214,12 +214,12 @@ def test_ignore_expired_candle(default_conf):
current_time = latest_date + timedelta(seconds=30 + 300)
assert not strategy.ignore_expired_candle(
assert strategy.ignore_expired_candle(
latest_date=latest_date,
current_time=current_time,
timeframe_seconds=300,
enter=True
) is True
) is not True
def test_assert_df_raise(mocker, caplog, ohlcv_history):