Skip to content

Commit 2cc20e8

Browse files
committed
Remove unneeded native cast.
1 parent 5d24ade commit 2cc20e8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

py/objlist.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ STATIC mp_obj_t list_pop(size_t n_args, const mp_obj_t *args);
4646

4747
STATIC void list_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) {
4848
mp_obj_list_t *o = MP_OBJ_TO_PTR(o_in);
49-
//mp_obj_list_t *o = mp_instance_cast_to_native_base(o_in, &mp_type_list);
5049
if (!(MICROPY_PY_UJSON && kind == PRINT_JSON)) {
5150
kind = PRINT_REPR;
5251
}

0 commit comments

Comments
 (0)