From fd18342b95c958e0bd6606b0f55ac7a60f2ec519 Mon Sep 17 00:00:00 2001 From: John Siirola Date: Thu, 31 Oct 2024 10:32:34 -0600 Subject: [PATCH] NFC: apply black --- pyomo/solvers/plugins/solvers/GUROBI.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyomo/solvers/plugins/solvers/GUROBI.py b/pyomo/solvers/plugins/solvers/GUROBI.py index e1f12dafeef..246c9f57fba 100644 --- a/pyomo/solvers/plugins/solvers/GUROBI.py +++ b/pyomo/solvers/plugins/solvers/GUROBI.py @@ -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