Skip to content

Commit e07dce3

Browse files
author
Cody Karcher
committed
needed to pip upgrade black
1 parent 13bc460 commit e07dce3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: pyomo/contrib/edi/tests/test_docSnippets.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,7 @@ def test_edi_snippet_constraints_01(self):
509509
y = f.Variable(name='y', guess=1.0, units='m', description='The y variable')
510510
c = f.Constant(name='c', value=1.0, units='', description='A constant c')
511511
f.Objective(c * x + y)
512-
f.ConstraintList(
513-
[x**2 + y**2 <= 1.0 * units.m**2, x <= 0.75 * units.m, x >= y]
514-
)
512+
f.ConstraintList([x**2 + y**2 <= 1.0 * units.m**2, x <= 0.75 * units.m, x >= y])
515513
# END: Constraints_Snippet_01
516514

517515
def test_edi_snippet_constraints_02(self):

0 commit comments

Comments
 (0)