Skip to content

Commit dfc81f0

Browse files
Added type annotation for __init__
1 parent 0e033b9 commit dfc81f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_amg88xx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class AMG88XX:
123123

124124
_tthh: RWBits = i2c_bits.RWBits(4, 0x0F, 0)
125125

126-
def __init__(self, i2c: busio.I2C, addr: int = 0x69):
126+
def __init__(self, i2c: busio.I2C, addr: int = 0x69) -> None:
127127
self.i2c_device = I2CDevice(i2c, addr)
128128

129129
# enter normal mode

0 commit comments

Comments
 (0)