only return data['result'] from get_ticker_history

This commit is contained in:
gcarq
2017-11-05 23:47:59 +01:00
parent 472ce8566d
commit 60e651cb4c
15 changed files with 27 additions and 33 deletions

View File

@@ -96,7 +96,7 @@ def get_ticker(pair: str) -> dict:
return _API.get_ticker(pair)
def get_ticker_history(pair: str, minimum_date: arrow.Arrow):
def get_ticker_history(pair: str, minimum_date: arrow.Arrow) -> List:
return _API.get_ticker_history(pair, minimum_date)