Skip to content

Commit 380fe64

Browse files
committed
Update acquisition.py
Linter improved
1 parent 0cd9176 commit 380fe64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bayes_opt/acquisition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def _l_bfgs_b_minimize(
321321
x_try = res.x
322322
x_min = x_try
323323
min_acq = np.squeeze(res.fun)
324-
324+
325325
#Case of mixed-integer optimization
326326
else:
327327
ntrials = max(1, len(x_seeds)//100)
@@ -339,7 +339,7 @@ def _l_bfgs_b_minimize(
339339
x_try = res.x
340340
x_min = x_try
341341
min_acq = np.squeeze(res.fun)
342-
342+
343343
if min_acq is None:
344344
min_acq = np.inf
345345
x_min = np.array([np.nan] * space.bounds.shape[0])

0 commit comments

Comments
 (0)