Skip to content

Commit d089f16

Browse files
committed
'seconds'
1 parent dd6dfeb commit d089f16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/busio/UART.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extern const busio_uart_parity_obj_t busio_uart_parity_odd_obj;
7171

7272
STATIC void validate_timeout(mp_float_t timeout) {
7373
if (timeout < (mp_float_t) 0.0f || timeout > (mp_float_t) 100.0f) {
74-
mp_raise_ValueError(translate("timeout must be 0.0-100.0"));
74+
mp_raise_ValueError(translate("timeout must be 0.0-100.0 seconds"));
7575
}
7676
}
7777

0 commit comments

Comments
 (0)