Skip to content

Commit 45a7afc

Browse files
committed
Ran formatting command
1 parent 1ab6d97 commit 45a7afc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

adafruit_hid/keycode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ class Keycode:
254254
"""Function key F18 (Mac)"""
255255
F19 = 0x6E
256256
"""Function key F19 (Mac)"""
257-
257+
258258
F20 = 0x6F
259259
"""Function key F20"""
260260
F21 = 0x70

examples/gamepad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ def __init__(self, devices):
6565
self.reset_all()
6666

6767
def press_buttons(self, *buttons):
68-
"""Press and hold the given buttons. """
68+
"""Press and hold the given buttons."""
6969
for button in buttons:
7070
self._buttons_state |= 1 << self._validate_button_number(button) - 1
7171
self._send()
7272

7373
def release_buttons(self, *buttons):
74-
"""Release the given buttons. """
74+
"""Release the given buttons."""
7575
for button in buttons:
7676
self._buttons_state &= ~(1 << self._validate_button_number(button) - 1)
7777
self._send()

0 commit comments

Comments
 (0)