From cae8c3a7a8a2a4124b995294640fa475937cfc3b Mon Sep 17 00:00:00 2001 From: Robert Caulk Date: Mon, 27 Mar 2023 07:00:20 -0400 Subject: [PATCH] Update freqtrade/freqai/data_drawer.py Co-authored-by: Matthias --- freqtrade/freqai/data_drawer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/freqtrade/freqai/data_drawer.py b/freqtrade/freqai/data_drawer.py index 79ceab3d4..0e41655fe 100644 --- a/freqtrade/freqai/data_drawer.py +++ b/freqtrade/freqai/data_drawer.py @@ -75,8 +75,7 @@ class FreqaiDataDrawer: self.full_path = full_path self.historic_predictions_path = Path(self.full_path / "historic_predictions.pkl") self.historic_predictions_folder = Path(self.full_path / "historic_predictions") - self.historic_predictions_bkp_folder = Path( - self.full_path / "historic_predictions_backup") + self.historic_predictions_bkp_folder = Path(self.full_path / "historic_predictions_backup") self.pair_dictionary_path = Path(self.full_path / "pair_dictionary.json") self.global_metadata_path = Path(self.full_path / "global_metadata.json") self.metric_tracker_path = Path(self.full_path / "metric_tracker.json")