diff options
Diffstat (limited to 'py/objtuple.c')
-rw-r--r-- | py/objtuple.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/objtuple.c b/py/objtuple.c index 2205b869c5..e96f76aeaf 100644 --- a/py/objtuple.c +++ b/py/objtuple.c @@ -103,7 +103,6 @@ const mp_obj_type_t tuple_type = { .make_new = tuple_make_new, .binary_op = tuple_binary_op, .getiter = tuple_getiter, - .methods = {{NULL, NULL},}, }; // the zero-length tuple @@ -166,7 +165,6 @@ static const mp_obj_type_t tuple_it_type = { .base = { &mp_const_type }, .name = "tuple_iterator", .iternext = tuple_it_iternext, - .methods = {{NULL, NULL},}, }; static mp_obj_t mp_obj_new_tuple_iterator(mp_obj_tuple_t *tuple, int cur) { |