py/parsenum: Fix typo in #endif comment.

This fixes a `#endif` comment to exactly match the `#if`.

Signed-off-by: David Lechner <david@pybricks.com>
pull/11718/head
David Lechner 2023-06-06 10:41:23 -05:00 zatwierdzone przez Damien George
rodzic 034502bc72
commit 8cf9898dd3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -214,7 +214,7 @@ static void accept_digit(mp_float_t *p_dec_val, int dig, int *p_exp_extra, int i
}
}
}
#endif // MICROPY_BUILTINS_FLOAT
#endif // MICROPY_PY_BUILTINS_FLOAT
#if MICROPY_PY_BUILTINS_COMPLEX
mp_obj_t mp_parse_num_decimal(const char *str, size_t len, bool allow_imag, bool force_complex, mp_lexer_t *lex)