Skip to content

Commit

Permalink
Fix NLoptOptimizer.__repr__
Browse files Browse the repository at this point in the history
An incorrect value was used for `local_options`.
  • Loading branch information
dweindl committed Nov 25, 2024
1 parent 4611586 commit 4b9d921
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 4b9d921

Please sign in to comment.