diff --git a/adafruit_ch9328/ch9328.py b/adafruit_ch9328/ch9328.py index b68478f..446e376 100644 --- a/adafruit_ch9328/ch9328.py +++ b/adafruit_ch9328/ch9328.py @@ -50,7 +50,6 @@ def send_key_press(self, keys: typing.List[int], modifier: int = 0) -> None: Args: keys (list): List of up to 6 key codes to be pressed simultaneously. modifier (int, optional): Modifier key code (e.g., Shift, Ctrl) - to be applied with the key presses. """ # Ensure keys has exactly 6 elements keys = keys + [0x00] * (6 - len(keys))