Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbynum committed Feb 23, 2024
1 parent 451a0ed commit ab1e1c8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pyomo/contrib/solver/ipopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,9 @@ def solve(self, model, **kwds):
timer.stop('subprocess')
# This is the stuff we need to parse to get the iterations
# and time
(
iters,
ipopt_time_nofunc,
ipopt_time_func,
ipopt_total_time,
) = self._parse_ipopt_output(ostreams[0])
(iters, ipopt_time_nofunc, ipopt_time_func, ipopt_total_time) = (
self._parse_ipopt_output(ostreams[0])
)

if proven_infeasible:
results = Results()
Expand Down

0 comments on commit ab1e1c8

Please sign in to comment.