diff options
Diffstat (limited to 'py/objint.c')
-rw-r--r-- | py/objint.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/objint.c b/py/objint.c index 6b6c1694db..cf51b7870a 100644 --- a/py/objint.c +++ b/py/objint.c @@ -34,7 +34,6 @@ const mp_obj_type_t int_type = { .base = { &mp_const_type }, .name = "int", .make_new = int_make_new, - .methods = { { NULL, NULL }, }, }; mp_obj_t mp_obj_new_int(machine_int_t value) { |