Skip to content

Commit

Permalink
Add whitespaces to error messages to beautify formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronzila committed Jul 25, 2023
1 parent 3010e51 commit bafb536
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dehb/optimizers/dehb.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ def __init__(self, cs=None, f=None, dimensions=None, mutation_factor=None,
"If you have a fixed fidelity, " \
"you can instead run DE as follows: " \
"AsyncDE(cs=configspace, f=target_function, dimensions=" \
f"{self.dimensions}, pop_size={self.dimensions * 2}," \
f"{self.dimensions}, pop_size={self.dimensions * 2}, " \
f"max_age={self.max_age}, mutation_factor=" \
f"{self.mutation_factor}, crossover_prob={self.crossover_prob},"\
f"strategy={self.strategy}, budget={self.max_budget}," \
f"{self.mutation_factor}, crossover_prob={self.crossover_prob}, "\
f"strategy={self.strategy}, budget={self.max_budget}, " \
f"boundary_fix_type={self.fix_type})")
sys.exit()
self.eta = eta
Expand Down

0 comments on commit bafb536

Please sign in to comment.