From d6eddbd468d40bb21caf88f37714276d64573bd5 Mon Sep 17 00:00:00 2001 From: DarkMechanikum Date: Thu, 4 Jul 2024 23:26:48 +0300 Subject: [PATCH] fixes --- .../microcontroller/starfive/JH7110/pwmio/PWMOut.py | 10 ---------- 1 file changed, 10 deletions(-) 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""" -- 2.49.0