exportfilename can be a file or directory

This commit is contained in:
Matthias
2020-06-28 09:45:23 +02:00
parent 2ed808da1f
commit 7c5587aeaa
3 changed files with 15 additions and 7 deletions

View File

@@ -199,7 +199,7 @@ class Configuration:
config['exportfilename'] = Path(config['exportfilename'])
else:
config['exportfilename'] = (config['user_data_dir']
/ 'backtest_results/backtest-result.json')
/ 'backtest_results')
def _process_optimize_options(self, config: Dict[str, Any]) -> None: