diff options
Diffstat (limited to 'py/objzip.c')
-rw-r--r-- | py/objzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objzip.c b/py/objzip.c index 8f1bfe143..b939ff6cb 100644 --- a/py/objzip.c +++ b/py/objzip.c @@ -51,7 +51,7 @@ STATIC mp_obj_t zip_iternext(mp_obj_t self_in) { } const mp_obj_type_t zip_type = { - { &mp_const_type }, + { &mp_type_type }, .name = MP_QSTR_zip, .make_new = zip_make_new, .getiter = zip_getiter, |