Fixed line length in HyperOpt for new name

Fixed line length errors and multiple f strings to facilitate strategy being added in the name
This commit is contained in:
Patrick Weber 2021-03-05 13:16:49 -06:00 committed by GitHub
parent 345f7404e9
commit 4532222010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,8 @@ class Hyperopt:
time_now = datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
strategy = str(self.config['strategy'])
self.results_file = (self.config['user_data_dir'] /
'hyperopt_results' / f'strategy_{strategy}_' f'hyperopt_results_{time_now}.pickle')
'hyperopt_results' /
f'strategy_{strategy}_hyperopt_results_{time_now}.pickle')
self.data_pickle_file = (self.config['user_data_dir'] /
'hyperopt_results' / 'hyperopt_tickerdata.pkl')
self.total_epochs = config.get('epochs', 0)