aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/lcdtemp.py4
-rwxr-xr-xbin/timetemp.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/bin/lcdtemp.py b/bin/lcdtemp.py
index c576c41..b514bb6 100755
--- a/bin/lcdtemp.py
+++ b/bin/lcdtemp.py
@@ -4,8 +4,8 @@
"""Simple test for 16x2 character lcd connected to an MCP23008 I2C LCD backpack."""
import time
-import board
-import adafruit_character_lcd.character_lcd_i2c as character_lcd
+import board # type: ignore
+import adafruit_character_lcd.character_lcd_i2c as character_lcd # type: ignore
import subprocess
cmd = "hostname -I | cut -d' ' -f1"
diff --git a/bin/timetemp.py b/bin/timetemp.py
index 8eade47..d4bbb61 100755
--- a/bin/timetemp.py
+++ b/bin/timetemp.py
@@ -3,9 +3,9 @@
# SPDX-License-Identifier: MIT
import time
-import board
-import busio
-from adafruit_ht16k33 import segments
+import board # type: ignore
+import busio # type: ignore
+from adafruit_ht16k33 import segments # type: ignore
# Create the I2C interface.
i2c = busio.I2C(board.SCL, board.SDA)