From c7b687d8b3a1a90247db1e8b5a0ffe39321d19f3 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Tue, 17 Mar 2026 16:24:41 -0500 Subject: [PATCH] fix return type --- shared-bindings/busio/I2C.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/busio/I2C.c b/shared-bindings/busio/I2C.c index c93566c0b62e4..5fa62f9df3859 100644 --- a/shared-bindings/busio/I2C.c +++ b/shared-bindings/busio/I2C.c @@ -112,7 +112,7 @@ static void check_lock(busio_i2c_obj_t *self) { } } -//| def probe(self, address: int) -> List[int]: +//| def probe(self, address: int) -> bool: //| """Check if a device at the specified address responds. //| //| :param int address: 7-bit device address