remove redundant declaratoin

This commit is contained in:
Jeff Epler 2023-09-22 13:55:24 -05:00
parent 0265ae07f8
commit a181172336
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 0 additions and 1 deletions

View File

@ -52,7 +52,6 @@ STATIC mp_obj_t namedtuple_asdict(mp_obj_t self_in) {
mp_obj_dict_t *dictObj = MP_OBJ_TO_PTR(dict);
#if MICROPY_PY_COLLECTIONS_ORDEREDDICT
// make it an OrderedDict
mp_obj_dict_t *dictObj = MP_OBJ_TO_PTR(dict);
dictObj->base.type = &mp_type_ordereddict;
dictObj->map.is_ordered = 1;
#else