Fixed flake8 warnings

This commit is contained in:
hoeckxer
2021-01-05 15:30:29 +01:00
parent 67d84e7514
commit 573de1cf08
2 changed files with 6 additions and 3 deletions

View File

@@ -117,7 +117,9 @@ def test_ignore_expired_candle(default_conf, ohlcv_history):
mocked_history = ohlcv_history.copy()
latest_date = mocked_history['date'].max()
assert strategy.ignore_expired_candle(latest_date=latest_date, timeframe_seconds=300, buy=True) is True
assert strategy.ignore_expired_candle(latest_date=latest_date,
timeframe_seconds=300,
buy=True) is True
def test_assert_df_raise(mocker, caplog, ohlcv_history):