run codeformat

This commit is contained in:
Jeff Epler 2021-08-19 13:54:13 -05:00
parent cabe96e188
commit 6ea136987e
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ mp_obj_t common_hal_canio_listener_receive(canio_listener_obj_t *self) {
}
RUN_BACKGROUND_TASKS;
// Allow user to break out of a timeout with a KeyboardInterrupt.
if ( mp_hal_is_interrupted() ) {
if (mp_hal_is_interrupted()) {
return NULL;
}
} while (!common_hal_canio_listener_in_waiting(self));