We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc6d014 commit 5b6cf69Copy full SHA for 5b6cf69
pyomo/core/tests/unit/test_numvalue.py
@@ -643,7 +643,9 @@ def _tester(expr):
643
_tester('p = Param(mutable=True); p.construct(); p.value = ref')
644
if pint_available:
645
_tester('v = Var(units=units.m); v.construct(); v.value = ref')
646
- _tester('p = Param(mutable=True, units=units.m); p.construct(); p.value = ref')
+ _tester(
647
+ 'p = Param(mutable=True, units=units.m); p.construct(); p.value = ref'
648
+ )
649
650
651
if __name__ == "__main__":
0 commit comments