File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments