Skip to content

Commit 9a65eac

Browse files
committed
pre-commit
1 parent 6cfc078 commit 9a65eac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_hid/keyboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _remove_keycode_from_report(self, keycode: int) -> None:
163163
def led_status(self) -> bytes:
164164
"""Returns the last received report"""
165165
# get_last_received_report() returns None when nothing was received
166-
return self._keyboard_device.get_last_received_report() or b'\x00'
166+
return self._keyboard_device.get_last_received_report() or b"\x00"
167167

168168
def led_on(self, led_code: int) -> bool:
169169
"""Returns whether an LED is on based on the led code

0 commit comments

Comments
 (0)