Skip to content

Commit 8816081

Browse files
committed
Black
1 parent 6867eef commit 8816081

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/miniesptool_simpletest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
uart = busio.UART(tx, rx, baudrate=115200, timeout=1)
1616

1717
esptool = adafruit_miniesptool.miniesptool(
18-
uart, DigitalInOut(gpio0pin), DigitalInOut(resetpin), flashsize=4*1024*1024
18+
uart, DigitalInOut(gpio0pin), DigitalInOut(resetpin), flashsize=4 * 1024 * 1024
1919
)
2020
esptool.sync()
2121

@@ -27,7 +27,7 @@
2727
print("MAC ADDR: ", [hex(i) for i in esptool.mac_addr])
2828

2929
# Note: Make sure to use the LATEST nina-fw binary release!
30-
esptool.flash_file("NINA_W102-1.6.1.bin", 0x0, '0326db53e579f8a4293feac70d00f6bb')
30+
esptool.flash_file("NINA_W102-1.6.1.bin", 0x0, "0326db53e579f8a4293feac70d00f6bb")
3131

3232
esptool.reset()
3333
time.sleep(0.5)

0 commit comments

Comments
 (0)