reverted Path edits

This commit is contained in:
Jonathan Raviotta 2019-09-10 20:03:17 -04:00
parent ea523ae6b6
commit 690ed2a517
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ def load_and_plot_trades(config: Dict[str, Any]):
) )
store_plot_file(fig, filename=generate_plot_filename(pair, config['ticker_interval']), store_plot_file(fig, filename=generate_plot_filename(pair, config['ticker_interval']),
directory=Path(config['user_data_dir'], "plot")) directory=config['user_data_dir'] / "plot")
logger.info('End of plotting process. %s plots generated', pair_counter) logger.info('End of plotting process. %s plots generated', pair_counter)

View File

@ -120,7 +120,7 @@ class StrategyResolver(IResolver):
current_path = Path(__file__).parent.parent.joinpath('strategy').resolve() current_path = Path(__file__).parent.parent.joinpath('strategy').resolve()
abs_paths = [ abs_paths = [
Path(config['user_data_dir']).joinpath('strategies'), config['user_data_dir'].joinpath('strategies'),
current_path, current_path,
] ]