Skip to content

Commit 1db909b

Browse files
committed
linted
1 parent a2a6137 commit 1db909b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/bluefruitspi_simpletest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# A simple echo test for the Feather M0 Bluefruit
2-
# Sets the name, then
2+
# Sets the name, then echo's all RX'd data with a reversed packet
33

4+
import time
45
import busio
5-
from digitalio import DigitalInOut, Direction
66
import board
7-
import time
7+
from digitalio import DigitalInOut
88
from adafruit_bluefruitspi import BluefruitSPI
99

1010
spi_bus = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
@@ -57,5 +57,5 @@
5757
send.append(resp[i-1])
5858
print(bytes(send))
5959
bluefruit.uart_tx(bytes(send))
60-
60+
6161
print("Connection lost.")

0 commit comments

Comments
 (0)