fix typo, refresh_tickers does not need a return value

This commit is contained in:
Matthias
2018-08-29 19:56:38 +02:00
parent 54ddd908e6
commit ffd4469c1d
3 changed files with 4 additions and 6 deletions

View File

@@ -410,7 +410,7 @@ class Exchange(object):
logger.info("downloaded %s with length %s.", pair, len(data))
return data
def refresh_tickers(self, pair_list: List[str], ticker_interval: str) -> bool:
def refresh_tickers(self, pair_list: List[str], ticker_interval: str) -> None:
"""
Refresh tickers asyncronously and return the result.
"""
@@ -418,8 +418,6 @@ class Exchange(object):
asyncio.get_event_loop().run_until_complete(
self.async_get_candles_history(pair_list, ticker_interval))
return True
async def async_get_candles_history(self, pairs: List[str],
tick_interval: str) -> List[Tuple[str, List]]:
"""Download ohlcv history for pair-list asyncronously """