run flake8
This commit is contained in:
parent
00a1931f40
commit
8248d1acd1
@ -102,7 +102,8 @@ class AgeFilter(IPairList):
|
|||||||
|
|
||||||
if daily_candles is not None:
|
if daily_candles is not None:
|
||||||
if len(daily_candles) >= self._min_days_listed and \
|
if len(daily_candles) >= self._min_days_listed and \
|
||||||
(True if not self._max_days_listed else len(daily_candles) <= self._max_days_listed):
|
(True if not self._max_days_listed
|
||||||
|
else len(daily_candles) <= self._max_days_listed):
|
||||||
# We have fetched at least the minimum required number of daily candles
|
# We have fetched at least the minimum required number of daily candles
|
||||||
# Add to cache, store the time we last checked this symbol
|
# Add to cache, store the time we last checked this symbol
|
||||||
self._symbolsChecked[pair] = arrow.utcnow().int_timestamp * 1000
|
self._symbolsChecked[pair] = arrow.utcnow().int_timestamp * 1000
|
||||||
|
Loading…
Reference in New Issue
Block a user