diff options
| author | D Delmar Davis <don@suspectdevices.com> | 2025-06-30 08:31:28 -0700 |
|---|---|---|
| committer | D Delmar Davis <don@suspectdevices.com> | 2025-06-30 08:31:28 -0700 |
| commit | c3764f63786f35fbdc4f47f1b5d9c5bd9dfea109 (patch) | |
| tree | eb5b243337d43c88c5c23323e070acf1843e25ac /bin | |
| parent | 8477b36b8bd7b68827fb27d3b4d611b3d44fac7e (diff) | |
Get microsoft to stop complaining about things that arent on the macos machine
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/lcdtemp.py | 4 | ||||
| -rwxr-xr-x | bin/timetemp.py | 6 |
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) |
