Skip to content

Commit ab1e1c8

Browse files
committed
run black
1 parent 451a0ed commit ab1e1c8

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

pyomo/contrib/solver/ipopt.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -369,12 +369,9 @@ def solve(self, model, **kwds):
369369
timer.stop('subprocess')
370370
# This is the stuff we need to parse to get the iterations
371371
# and time
372-
(
373-
iters,
374-
ipopt_time_nofunc,
375-
ipopt_time_func,
376-
ipopt_total_time,
377-
) = self._parse_ipopt_output(ostreams[0])
372+
(iters, ipopt_time_nofunc, ipopt_time_func, ipopt_total_time) = (
373+
self._parse_ipopt_output(ostreams[0])
374+
)
378375

379376
if proven_infeasible:
380377
results = Results()

0 commit comments

Comments
 (0)