diff options
Diffstat (limited to 'py')
-rw-r--r-- | py/objstr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/py/objstr.c b/py/objstr.c index c27b19939d..a3f2d6075d 100644 --- a/py/objstr.c +++ b/py/objstr.c @@ -790,6 +790,8 @@ mp_obj_t str_format(uint n_args, const mp_obj_t *args) { } } + // NOTE: no else here. We need the e, f, g etc formats for integer + // arguments (from above if) to take this if. if (arg_looks_numeric(arg)) { if (!type) { |