From 59f9f4d467df2bddebfec1856b775e57dbce4671 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 25 Apr 2023 09:27:33 +0200 Subject: [PATCH] Fix exception typos due to newlines --- freqtrade/freqai/freqai_interface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/freqtrade/freqai/freqai_interface.py b/freqtrade/freqai/freqai_interface.py index 7eaaeab3e..039b6a175 100644 --- a/freqtrade/freqai/freqai_interface.py +++ b/freqtrade/freqai/freqai_interface.py @@ -489,9 +489,9 @@ class IFreqaiModel(ABC): if dk.training_features_list != feature_list: raise OperationalException( "Trying to access pretrained model with `identifier` " - "but found different features furnished by current strategy." - "Change `identifier` to train from scratch, or ensure the" - "strategy is furnishing the same features as the pretrained" + "but found different features furnished by current strategy. " + "Change `identifier` to train from scratch, or ensure the " + "strategy is furnishing the same features as the pretrained " "model. In case of --strategy-list, please be aware that FreqAI " "requires all strategies to maintain identical " "feature_engineering_* functions"