We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac3fc4 commit b8273f9Copy full SHA for b8273f9
pyomo/contrib/pyros/tests/test_dr_interface.py
@@ -2,12 +2,15 @@
2
Tests for the decision rule interface.
3
"""
4
5
-import numpy as np
6
-
7
import pyomo.common.unittest as unittest
8
from pyomo.contrib.pyros.dr_interface import DecisionRuleInterface
9
from pyomo.core.base import ConcreteModel, Param, Var
10
-from pyomo.common.dependencies import attempt_import, numpy_available, scipy_available
+from pyomo.common.dependencies import (
+ attempt_import,
+ numpy as np,
11
+ numpy_available,
12
+ scipy_available,
13
+)
14
15
parameterized, param_available = attempt_import('parameterized')
16
0 commit comments