Note: this is my first issue to a public repo...ever. I read the contributing guidelines, but please correct me if I am doing anything wrong here! Thank you!
In the .pyi file for the RPi.GPIO module, class PWM, the method name "ChangeFrequence" is specified. This is a typo, and should actually be "ChangeFrequency".
This typo is on line 65 of
|
def ChangeFrequence(self, frequency: float, /) -> None: ... |
It should instead be:
def ChangeFrequency(self, frequency: float, /) -> None: ...
Reference:
https://sourceforge.net/p/raspberry-gpio-python/code/ci/default/tree/source/py_pwm.c, line 115
Note: this is my first issue to a public repo...ever. I read the contributing guidelines, but please correct me if I am doing anything wrong here! Thank you!
In the .pyi file for the RPi.GPIO module, class PWM, the method name "ChangeFrequence" is specified. This is a typo, and should actually be "ChangeFrequency".
This typo is on line 65 of
typeshed/stubs/RPi.GPIO/RPi/GPIO/__init__.pyi
Line 65 in da50b5c
It should instead be:
Reference:
https://sourceforge.net/p/raspberry-gpio-python/code/ci/default/tree/source/py_pwm.c, line 115