From ad92cdacf3bb0ac639da55c5740a1754b076bb85 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 18 Jun 2014 09:34:52 -0700 Subject: [PATCH] pypid.backend: Fix Backend.get_duwn_gains -> get_down_gains typo This isn't critical since it's just a stub method, but still nice to spell things correctly ;). --- pypid/backend/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypid/backend/__init__.py b/pypid/backend/__init__.py index 15f0a79..e52dce0 100644 --- a/pypid/backend/__init__.py +++ b/pypid/backend/__init__.py @@ -142,7 +142,7 @@ class PIDMixin (object): "Get the process variable setpoint in PV-units" raise NotImplementedError() - def get_duwn_gains(self): + def get_down_gains(self): """...""" raise NotImplementedError() -- 2.26.2