From 68712c884e6551e0c6d0edb0d08c9c19c6479e23 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 16 Nov 2024 12:51:13 +0100 Subject: [PATCH] chore: fix line length --- freqtrade/data/history/history_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index 92d8f44c5..de3d64fc0 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -680,5 +680,6 @@ def download_data_main(config: Config) -> None: if pairs_not_available: errors = "\n" + ("\n".join(pairs_not_available)) logger.warning( - f"Encountered a problem downloading the following pairs from {exchange.name}: {errors}" + f"Encountered a problem downloading the following pairs from {exchange.name}: " + f"{errors}" )