Skip to content

Commit

Permalink
Fix NLoptOptimizer.__repr__ (#1518)
Browse files Browse the repository at this point in the history
An incorrect value was used for `local_options`.
  • Loading branch information
dweindl authored Nov 27, 2024
1 parent 6eb4245 commit bd98004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypesto/optimize/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ def __repr__(self) -> str:
if self.options is not None:
rep += f" options={self.options}"
if self.local_options is not None:
rep += f" local_options={self.local_methods}"
rep += f" local_options={self.local_options}"
return rep + ">"

@minimize_decorator_collection
Expand Down

0 comments on commit bd98004

Please sign in to comment.