From b7f26e4f96c444f15025a83e5fcb11529b611f85 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 4 Oct 2022 20:23:20 +0200 Subject: [PATCH] Update some formatting issues --- freqtrade/exchange/exchange.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 4f869f994..5b7ab1f7f 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -1882,10 +1882,8 @@ class Exchange: input_coroutines = [] cached_pairs = [] for pair, timeframe, candle_type in set(pair_list): - if ( - timeframe not in self.timeframes - and candle_type in (CandleType.SPOT, CandleType.FUTURES) - ): + if (timeframe not in self.timeframes + and candle_type in (CandleType.SPOT, CandleType.FUTURES)): logger.warning( f"Cannot download ({pair}, {timeframe}) combination as this timeframe is " f"not available on {self.name}. Available timeframes are "