diff options
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 277fce828d..6de07cf578 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -162,7 +162,6 @@ mp_obj_t mp_obj_list_append(mp_obj_t self_in, mp_obj_t arg) { mp_obj_list_t *self = self_in; if (self->len >= self->alloc) { self->items = m_renew(mp_obj_t, self->items, self->alloc, self->alloc * 2); - assert(self->items); self->alloc *= 2; } self->items[self->len++] = arg; |