diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2020-01-30 10:59:16 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2020-01-30 10:59:16 -0800 |
| commit | 2cc20e8816c6c1571b7488e83e3b13af79d50d65 (patch) | |
| tree | d566dd600e0d1eb73ea536ebc40c30bf85d2338c /py | |
| parent | 5d24ade5c9f7b1771b5b914835bd7ededc6fcdc0 (diff) | |
Remove unneeded native cast.
Diffstat (limited to 'py')
| -rw-r--r-- | py/objlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/objlist.c b/py/objlist.c index 9ae9c0ed6..608ea9f6c 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -46,7 +46,6 @@ STATIC mp_obj_t list_pop(size_t n_args, const mp_obj_t *args); STATIC void list_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) { mp_obj_list_t *o = MP_OBJ_TO_PTR(o_in); - //mp_obj_list_t *o = mp_instance_cast_to_native_base(o_in, &mp_type_list); if (!(MICROPY_PY_UJSON && kind == PRINT_JSON)) { kind = PRINT_REPR; } |
