Skip to content

Commit 209c1c3

Browse files
committed
fix whitespace error
1 parent 20234b7 commit 209c1c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elfi/methods/bo/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def minimize(fun,
9797
for i in range(n_start_points):
9898
result = scipy.optimize.minimize(fun, start_points[i, :],
9999
method=method, jac=grad,
100-
bounds=bounds, constraints=constraints,
100+
bounds=bounds, constraints=constraints,
101101
options={'maxiter': maxiter})
102102
locs.append(result['x'])
103103
vals[i] = result['fun']

0 commit comments

Comments
 (0)