From 76db7e6658eed2b383b6cb315b0c47d4395955a3 Mon Sep 17 00:00:00 2001 From: Brett Reinhard Date: Fri, 16 Dec 2016 07:37:29 -0800 Subject: [PATCH] Missing a letter in a return value Missing a letter in a return value for sofPwmWrite, changed to softPwmWrite to keep consistency --- wiringpi-class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiringpi-class.py b/wiringpi-class.py index 74ca602..a14df56 100644 --- a/wiringpi-class.py +++ b/wiringpi-class.py @@ -154,7 +154,7 @@ class GPIO(object): def softPwmCreate(self,*args): return softPwmCreate(*args) def softPwmWrite(self,*args): - return sofPwmWrite(*args) + return softPwmWrite(*args) def softToneCreate(self,*args): return softToneCreate(*args)