Remove unnecessary default parameters

This commit is contained in:
Matthias
2021-12-07 20:30:58 +01:00
parent ac2fb08aea
commit dda7283f3e
5 changed files with 12 additions and 44 deletions

View File

@@ -922,7 +922,7 @@ def test_hdf5datahandler_ohlcv_load_and_resave(
tmpdir2 = tmpdir1 / 'futures'
tmpdir2.mkdir()
dh = HDF5DataHandler(testdatadir)
ohlcv = dh._ohlcv_load(pair, timeframe, candle_type=candle_type)
ohlcv = dh._ohlcv_load(pair, timeframe, None, candle_type=candle_type)
assert isinstance(ohlcv, DataFrame)
assert len(ohlcv) > 0