Skip to content

Commit

Permalink
black format
Browse files Browse the repository at this point in the history
  • Loading branch information
ZedongPeng committed Nov 14, 2023
1 parent 73f2e16 commit a08fd36
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyomo/contrib/mindtpy/algorithm_base_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,10 +962,7 @@ def init_max_binaries(self):
mip_args = dict(config.mip_solver_args)
update_solver_timelimit(self.mip_opt, config.mip_solver, self.timing, config)
results = self.mip_opt.solve(
m,
tee=config.mip_solver_tee,
load_solutions=self.load_solutions,
**mip_args,
m, tee=config.mip_solver_tee, load_solutions=self.load_solutions, **mip_args
)
if len(results.solution) > 0:
m.solutions.load_from(results)
Expand Down

0 comments on commit a08fd36

Please sign in to comment.