default since_ms to 30 days if no timerange is given

This commit is contained in:
Matthias
2018-08-10 11:15:02 +02:00
parent a107c4c7b4
commit a852d2ff32
2 changed files with 5 additions and 2 deletions

View File

@@ -366,7 +366,7 @@ class Exchange(object):
tickers = await asyncio.gather(*input_coroutines, return_exceptions=True)
# Combine tickers
data = []
data: List = []
for tick in tickers:
if tick[0] == pair:
data.extend(tick[1])