Skip to content

Commit

Permalink
Obvious bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Oct 26, 2023
1 parent 65d869c commit a58dc41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyomo/solver/IPOPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ def version(self):

@property
def config(self):
return self._config
return self.config

@config.setter
def config(self, val):
self._config = val
self.config = val

def solve(self, model, **kwds):
# Check if solver is available
Expand Down

0 comments on commit a58dc41

Please sign in to comment.