Missing a letter in a return value

Missing a letter in a return value for sofPwmWrite, changed to softPwmWrite to keep consistency
This commit is contained in:
Brett Reinhard
2016-12-16 07:37:29 -08:00
committed by GitHub
parent 321ca837fd
commit 76db7e6658

View File

@@ -154,7 +154,7 @@ class GPIO(object):
def softPwmCreate(self,*args): def softPwmCreate(self,*args):
return softPwmCreate(*args) return softPwmCreate(*args)
def softPwmWrite(self,*args): def softPwmWrite(self,*args):
return sofPwmWrite(*args) return softPwmWrite(*args)
def softToneCreate(self,*args): def softToneCreate(self,*args):
return softToneCreate(*args) return softToneCreate(*args)