use fstring

This commit is contained in:
Janne Sinivirta 2018-07-03 11:17:41 +03:00
parent fa8fc3e4ce
commit 79aab4cce2

View File

@ -71,10 +71,8 @@ class Hyperopt(Backtesting):
# Ensure the number of dimensions match # Ensure the number of dimensions match
# the number of parameters in the list x. # the number of parameters in the list x.
if len(params) != len(dimensions): if len(params) != len(dimensions):
msg = "Mismatch in number of search-space dimensions. " \ raise ValueError('Mismatch in number of search-space dimensions. '
"len(dimensions)=={} and len(x)=={}" f'len(dimensions)=={len(dimensions)} and len(x)=={len(params)}')
msg = msg.format(len(dimensions), len(params))
raise ValueError(msg)
# Create a dict where the keys are the names of the dimensions # Create a dict where the keys are the names of the dimensions
# and the values are taken from the list of parameters x. # and the values are taken from the list of parameters x.