From f4af4cc2b2667aa703d896c069c3131df81213c5 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 27 May 2020 07:11:59 +0200 Subject: [PATCH] Small formatting improvement --- freqtrade/freqtradebot.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index ffee1a010..d4afa1d60 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -672,9 +672,7 @@ class FreqtradeBot: try: rate = next(self._order_book_gen(pair, f"{ask_strategy['price_side']}s")) except (IndexError, KeyError) as e: - logger.warning( - f"Sell Price at location from orderbook could not be determined." - ) + logger.warning("Sell Price at location from orderbook could not be determined.") raise PricingError from e else: rate = self.exchange.fetch_ticker(pair)[ask_strategy['price_side']]