Skip to content

Commit 6d62392

Browse files
committed
pylint fix
1 parent bf7bcb8 commit 6d62392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/neokey1x4_allkeys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33
"""NeoKey simpletest."""
4+
from time import sleep
45
import board
56
from adafruit_neokey.neokey1x4 import NeoKey1x4
6-
from time import sleep
77

88
# use default I2C bus
99
i2c_bus = board.I2C()
@@ -48,4 +48,4 @@
4848
else:
4949
neokey.pixels[3] = 0x0
5050

51-
sleep(2)
51+
sleep(.5)

0 commit comments

Comments
 (0)