Fix mypy in scripts

This commit is contained in:
Matthias
2019-03-23 19:28:06 +01:00
parent 184b13f2fb
commit 83a2427a61
4 changed files with 6 additions and 6 deletions

View File

@@ -146,7 +146,7 @@ def get_tickers_data(strategy, exchange, pairs: List[str], args):
tickers[pair] = exchange.klines((pair, tick_interval))
else:
tickers = history.load_data(
datadir=Path(_CONF.get("datadir")),
datadir=Path(str(_CONF.get("datadir"))),
pairs=pairs,
ticker_interval=tick_interval,
refresh_pairs=_CONF.get('refresh_pairs', False),