Skip to content

Commit cea6164

Browse files
committed
fix line length for pylint
1 parent 4973814 commit cea6164

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

adafruit_hid/keyboard_layout_base.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,15 @@ class KeyboardLayoutBase:
3737
RIGHT_ALT_CODE = 0xE6
3838
"""The ALTGR keycode, to avoid dependency to the Keycode class."""
3939
ASCII_TO_KEYCODE = ()
40-
"""Bytes string of keycodes for low ASCII characters, indexed by the ASCII value. Keycodes use the `SHIFT_FLAG` if needed. Dead keys are excluded by assigning the keycode 0."""
40+
"""Bytes string of keycodes for low ASCII characters, indexed by the ASCII value.
41+
Keycodes use the `SHIFT_FLAG` if needed.
42+
Dead keys are excluded by assigning the keycode 0."""
4143
HIGHER_ASCII = {}
4244
"""Dictionary that associates the ord() int value of high ascii and utf8 characters
4345
to their keycode. Keycodes use the `SHIFT_FLAG` if needed."""
4446
NEED_ALTGR = ""
45-
"""Characters in `ASCII_TO_KEYCODE` and `HIGHER_ASCII` that need the ALTGR key pressed to type."""
47+
"""Characters in `ASCII_TO_KEYCODE` and `HIGHER_ASCII` that need
48+
the ALTGR key pressed to type."""
4649
COMBINED_KEYS = {}
4750
"""
4851
Dictionary of characters (indexed by ord() value) that can be accessed by typing first

0 commit comments

Comments
 (0)