Skip to content

Commit 5b6cf69

Browse files
committed
NFC: apply black
1 parent cc6d014 commit 5b6cf69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyomo/core/tests/unit/test_numvalue.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,9 @@ def _tester(expr):
643643
_tester('p = Param(mutable=True); p.construct(); p.value = ref')
644644
if pint_available:
645645
_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')
646+
_tester(
647+
'p = Param(mutable=True, units=units.m); p.construct(); p.value = ref'
648+
)
647649

648650

649651
if __name__ == "__main__":

0 commit comments

Comments
 (0)