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.
2 parents e5fe50c + ee89c2b commit ba924d5Copy full SHA for ba924d5
adafruit_adt7410.py
@@ -108,7 +108,7 @@ class ADT7410:
108
temp_over_high: ROBit = ROBit(_ADT7410_STATUS, 5)
109
temp_under_low: ROBit = ROBit(_ADT7410_STATUS, 4)
110
111
- def __init__(self, i2c_bus: busio.I2C, address: int = 0x48):
+ def __init__(self, i2c_bus: busio.I2C, address: int = 0x48) -> None:
112
self.i2c_device = I2CDevice(i2c_bus, address)
113
self._buf = bytearray(3)
114
# Verify the manufacturer and device ids to ensure we are talking to
0 commit comments