From eb888cbe97fe050d8d093b49d67f46eb29069d7f Mon Sep 17 00:00:00 2001 From: John Siirola Date: Thu, 21 Nov 2024 14:36:19 -0700 Subject: [PATCH] NFC: fix typo Co-authored-by: Bethany Nicholson --- pyomo/neos/kestrel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyomo/neos/kestrel.py b/pyomo/neos/kestrel.py index ced76c7d06a..c917a6fe7d1 100644 --- a/pyomo/neos/kestrel.py +++ b/pyomo/neos/kestrel.py @@ -208,7 +208,7 @@ def getJobAndPassword(self): return (jobNumber, password) def getAvailableSolvers(self): - """Return a list of all NNEOS solvers that this interface supports""" + """Return a list of all NEOS solvers that this interface supports""" allKestrelSolvers = self.neos.listSolversInCategory("kestrel") _ampl = ':AMPL' return sorted(s[: -len(_ampl)] for s in allKestrelSolvers if s.endswith(_ampl))