Skip to content

Commit 153b177

Browse files
authored
Update network.py for Issue #7
Code prints the status_neopixel to stdout when it should only, perhaps, do that on debug. Fixes #7
1 parent 9175c44 commit 153b177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_fruitjam/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__( # noqa: PLR0913 Too many arguments in function definition
8888
image_position=None,
8989
image_dim_json_path=None,
9090
):
91-
print(f"status_neopixel", status_neopixel)
91+
# print(f"status_neopixel", status_neopixel)
9292
if isinstance(status_neopixel, microcontroller.Pin):
9393
status_led = neopixel.NeoPixel(status_neopixel, 1, brightness=0.2)
9494
elif isinstance(status_neopixel, neopixel.NeoPixel):

0 commit comments

Comments
 (0)