We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b18550 commit 9c845aaCopy full SHA for 9c845aa
Cartoon_Character_Clock/code.py
@@ -9,6 +9,7 @@
9
cartoon.
10
11
"""
12
+import os
13
import time
14
import board
15
from adafruit_display_analogclock import AnalogClock
@@ -19,7 +20,6 @@
19
20
from fourwire import FourWire
21
import adafruit_ntp
22
import wifi
-import os
23
import audiobusio
24
from audiomp3 import MP3Decoder
25
@@ -51,6 +51,8 @@
51
print("Failed to connect to WiFi with provided credentials")
52
raise
53
54
+# pylint: disable=consider-using-with, possibly-used-before-assignment, unsubscriptable-object
55
+
56
if HOURLY_CHIME or ALARM_TIME is not None:
57
# Audio Setup
58
audio = audiobusio.I2SOut(board.A2, board.A1, board.A0)
0 commit comments