From: DarkMechanikum Date: Thu, 4 Jul 2024 20:26:48 +0000 (+0300) Subject: fixes X-Git-Tag: 8.46.0~2^2~1^2~2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/d6eddbd468d40bb21caf88f37714276d64573bd5?ds=sidebyside fixes --- diff --git a/src/adafruit_blinka/microcontroller/starfive/JH7110/pwmio/PWMOut.py b/src/adafruit_blinka/microcontroller/starfive/JH7110/pwmio/PWMOut.py index 2b9eb5a..39cbb9b 100644 --- a/src/adafruit_blinka/microcontroller/starfive/JH7110/pwmio/PWMOut.py +++ b/src/adafruit_blinka/microcontroller/starfive/JH7110/pwmio/PWMOut.py @@ -19,16 +19,6 @@ class PWMError(IOError): # pylint: enable=unnecessary-pass -def create(pin, *, frequency=500, duty_cycle=0, variable_frequency=False): - """test""" - return PWMOut( - pin, - frequency=frequency, - duty_cycle=duty_cycle, - variable_frequency=variable_frequency, - ) - - class PWMOut: """Pulse Width Modulation Output Class"""