From e6659030342b25d6b558324531670cc87e01ea70 Mon Sep 17 00:00:00 2001 From: Liz Date: Mon, 10 Jun 2024 19:03:00 -0400 Subject: [PATCH] fix spacing for rtd --- adafruit_ch9328/ch9328.py | 1 - 1 file changed, 1 deletion(-) 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))