Skip to content

Commit be79fbc

Browse files
committed
Fix formatting
1 parent 5cc5bff commit be79fbc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libensemble/gen_funcs/aposmm_localopt_support.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class APOSMMException(Exception):
4545
if "dfols" in optimizers:
4646
import dfols # noqa: F401
4747
if "ibcdfo_pounders" in optimizers:
48-
from ibcdfo import run_pounders
48+
from ibcdfo import run_pounders # noqa: F401
4949
if "ibcdfo_manifold_sampling" in optimizers:
5050
from ibcdfo import run_MSP # noqa: F401
5151
if "scipy" in optimizers:
@@ -434,7 +434,7 @@ def run_local_ibcdfo_manifold_sampling(user_specs, comm_queue, x0, f0, child_can
434434
not be sent back to the manager).
435435
"""
436436
from ibcdfo import run_MSP # noqa: F811
437-
437+
438438
n = len(x0)
439439
# Define bound constraints (lower <= x <= upper)
440440
lb = np.zeros(n)
@@ -490,7 +490,7 @@ def run_local_ibcdfo_pounders(user_specs, comm_queue, x0, f0, child_can_read, pa
490490
not be sent back to the manager).
491491
"""
492492
from ibcdfo import run_pounders # noqa: F811
493-
493+
494494
n = len(x0)
495495
# Define bound constraints (lower <= x <= upper)
496496
lb = np.zeros(n)

0 commit comments

Comments
 (0)