Skip to content

Commit 39daae4

Browse files
committed
Ignore wrong-import-position warnings from pylint.
1 parent 2a9a60b commit 39daae4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

adafruit_hid/consumer_control.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
if sys.implementation[1][0] < 3:
3333
raise ImportError('{0} is not supported in CircuitPython 2.x or lower'.format(__name__))
3434

35+
# pylint: disable=wrong-import-position
3536
import time
3637
import usb_hid
3738

adafruit_hid/gamepad.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
if sys.implementation[1][0] < 3:
3333
raise ImportError('{0} is not supported in CircuitPython 2.x or lower'.format(__name__))
3434

35+
# pylint: disable=wrong-import-position
3536
import struct
3637
import time
3738
import usb_hid

0 commit comments

Comments
 (0)