diff options
Diffstat (limited to 'stmhal/help.c')
-rw-r--r-- | stmhal/help.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/stmhal/help.c b/stmhal/help.c index a1c81c824f..7dc7226b2c 100644 --- a/stmhal/help.c +++ b/stmhal/help.c @@ -72,12 +72,6 @@ STATIC mp_obj_t pyb_help(uint n_args, const mp_obj_t *args) { } } } - - if (type->methods != NULL) { - for (const mp_method_t *meth = type->methods; meth->name != MP_QSTR_NULL; meth++) { - pyb_help_print_info_about_object(MP_OBJ_NEW_QSTR(meth->name), (mp_obj_t)meth->fun); - } - } } return mp_const_none; |