Skip to content

Commit

Permalink
add __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
ewu63 committed May 8, 2024
1 parent 3dd11eb commit a09162c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pyoptsparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,25 @@
from .pyNSGA2.pyNSGA2 import NSGA2
from .pyALPSO.pyALPSO import ALPSO
from .pyParOpt.ParOpt import ParOpt

__all__ = [
"History",
"Variable",
"Gradient",
"Constraint",
"Objective",
"Optimization",
"Optimizer",
"OPT",
"Optimizers",
"Solution",
"SNOPT",
"IPOPT",
"SLSQP",
"CONMIN",
"PSQP",
"NLPQLP",
"NSGA2",
"ALPSO",
"ParOpt",
]

0 comments on commit a09162c

Please sign in to comment.