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 5e5d35df44..8f1bfe143f 100644 --- a/py/objzip.c +++ b/py/objzip.c @@ -52,7 +52,7 @@ STATIC mp_obj_t zip_iternext(mp_obj_t self_in) { const mp_obj_type_t zip_type = { { &mp_const_type }, - "zip", + .name = MP_QSTR_zip, .make_new = zip_make_new, .getiter = zip_getiter, .iternext = zip_iternext, |