esp32/esp32_rmt: Don't do unnecessary check for unsigned less than zero.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2020-10-06 18:06:09 +11:00
parent 9b90882146
commit 9c2231f47a
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ STATIC mp_obj_t esp32_rmt_write_pulses(size_t n_args, const mp_obj_t *pos_args,
mp_obj_t pulses = args[1].u_obj;
mp_uint_t start = args[2].u_int;
if (start < 0 || start > 1) {
if (start > 1) {
mp_raise_ValueError(MP_ERROR_TEXT("start must be 0 or 1"));
}