py/objstr: Make mp_obj_str_format_helper static.
diff --git a/py/objstr.c b/py/objstr.c
index ed850ba..60f65d8 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -848,7 +848,7 @@
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "bad format string"));
}
-vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *arg_i, mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
+STATIC vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *arg_i, mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
vstr_t vstr;
mp_print_t print;
vstr_init_print(&vstr, 16, &print);