diff --git a/adafruit_tca9548a.py b/adafruit_tca9548a.py index 96f2898..63c1c41 100644 --- a/adafruit_tca9548a.py +++ b/adafruit_tca9548a.py @@ -64,7 +64,7 @@ def try_lock(self) -> bool: self.tca.i2c.writeto(self.tca.address, self.channel_switch) return True - def unlock(self) -> bool: + def unlock(self) -> None: """Pass through for unlock.""" self.tca.i2c.writeto(self.tca.address, b"\x00") return self.tca.i2c.unlock()