From 613e87065baf68d3dad156c410f2bfe5f52f1c9f Mon Sep 17 00:00:00 2001 From: 97gamjak <97gamjak@gmail.com> Date: Tue, 9 Apr 2024 16:44:57 +0200 Subject: [PATCH] small path fix in filesettings --- stockMarket/technicalAnalysis/io/strategyFileSettings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stockMarket/technicalAnalysis/io/strategyFileSettings.py b/stockMarket/technicalAnalysis/io/strategyFileSettings.py index 36ccb289..3f9d4a03 100644 --- a/stockMarket/technicalAnalysis/io/strategyFileSettings.py +++ b/stockMarket/technicalAnalysis/io/strategyFileSettings.py @@ -32,7 +32,7 @@ def setup(self, if self.template_xlsx_path is not None: self.template_xlsx_path = Path(self.template_xlsx_path) else: - self.template_xlsx_path = Path(__file__).parent / "templates" + self.template_xlsx_path = Path(__file__).parent.parent / "templates" self.template_xlsx_file = str( self.template_xlsx_path / self.template_xlsx_file