Skip to content

Commit

Permalink
allow user to run config from anywhere on their system
Browse files Browse the repository at this point in the history
  • Loading branch information
robcaulk committed May 15, 2022
1 parent 9e94d28 commit 80dcd88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/freqai/data_kitchen.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def create_fulltimerange(self, backtest_tr: str, backtest_period: int) -> str:
if not self.full_path.is_dir():
self.full_path.mkdir(parents=True, exist_ok=True)
shutil.copy(
config_path.name,
config_path.resolve(),
Path(self.full_path / config_path.parts[-1]),
)

Expand Down

0 comments on commit 80dcd88

Please sign in to comment.