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>
This commit is contained in:
David Lechner 2023-06-06 10:41:23 -05:00 committed by Damien George
parent 034502bc72
commit 8cf9898dd3
1 changed files with 1 additions and 1 deletions

View File

@ -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)