From 76d43782db82ee4b8ee95e8ab84e59607bdb8ece Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 5 Mar 2025 07:07:25 +0100 Subject: [PATCH] chore: fix typo in exception --- freqtrade/exchange/binance_public_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/exchange/binance_public_data.py b/freqtrade/exchange/binance_public_data.py index efa376ebc..f783a4906 100644 --- a/freqtrade/exchange/binance_public_data.py +++ b/freqtrade/exchange/binance_public_data.py @@ -161,7 +161,7 @@ async def _download_archive_ohlcv( else: dfs.append(None) except BaseException as e: - logger.warning(f"An exception raised: : {e}") + logger.warning(f"An exception raised: {e}") # Directly return the existing data, do not allow the gap within the data await cancel_and_await_tasks(tasks[tasks.index(task) + 1 :]) return concat_safe(dfs) @@ -488,7 +488,7 @@ async def _download_archive_trades( await cancel_and_await_tasks(tasks[tasks.index(task) + 1 :]) return results except BaseException as e: - logger.warning(f"An exception raised: : {e}") + logger.warning(f"An exception raised: {e}") # Directly return the existing data, do not allow the gap within the data await cancel_and_await_tasks(tasks[tasks.index(task) + 1 :]) return results