Skip to content

Commit 3a1d494

Browse files
author
brentru
committed
fix pointless string statement
1 parent 4c56aa3 commit 3a1d494

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/aws_iot_shadows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# Verify nina-fw version >= 1.4.0
5151
assert int(bytes(esp.firmware_version).decode("utf-8")[2]) >= 4, "Please update nina-fw to >=1.4.0."
5252

53-
"""Use below for Most Boards"""
53+
# Use below for Most Boards
5454
status_light = neopixel.NeoPixel(board.NEOPIXEL, 1, brightness=0.2) # Uncomment for Most Boards
55-
"""Uncomment below for ItsyBitsy M4"""
55+
# Uncomment below for ItsyBitsy M4
5656
# status_light = dotstar.DotStar(board.APA102_SCK, board.APA102_MOSI, 1, brightness=0.2)
5757
# Uncomment below for an externally defined RGB LED
5858
# import adafruit_rgbled

examples/aws_iot_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# Verify nina-fw version >= 1.4.0
5151
assert int(bytes(esp.firmware_version).decode("utf-8")[2]) >= 4, "Please update nina-fw to >=1.4.0."
5252

53-
"""Use below for Most Boards"""
53+
# Use below for Most Boards
5454
status_light = neopixel.NeoPixel(board.NEOPIXEL, 1, brightness=0.2) # Uncomment for Most Boards
55-
"""Uncomment below for ItsyBitsy M4"""
55+
# Uncomment below for ItsyBitsy M4
5656
# status_light = dotstar.DotStar(board.APA102_SCK, board.APA102_MOSI, 1, brightness=0.2)
5757
# Uncomment below for an externally defined RGB LED
5858
# import adafruit_rgbled

0 commit comments

Comments
 (0)