Skip to content

Commit

Permalink
NFC: apply black
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed Oct 31, 2024
1 parent 24bee9f commit fd18342
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyomo/solvers/plugins/solvers/GUROBI.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,11 @@ def _apply_solver(self):
with TeeStream(*ostreams) as t:
with capture_output(output=t.STDOUT, capture_fd=False):
self._soln = GUROBI_RUN.gurobi_run(
problem_filename, warmstart_filename, None, options_dict, self._suffixes
problem_filename,
warmstart_filename,
None,
options_dict,
self._suffixes,
)
self._log = ostreams[0].getvalue()
self._rc = 0
Expand Down

0 comments on commit fd18342

Please sign in to comment.