summaryrefslogtreecommitdiffstatshomepage
path: root/py/objcell.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objcell.c')
-rw-r--r--py/objcell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objcell.c b/py/objcell.c
index ce8f360141..3666617474 100644
--- a/py/objcell.c
+++ b/py/objcell.c
@@ -25,7 +25,7 @@ void mp_obj_cell_set(mp_obj_t self_in, mp_obj_t obj) {
}
const mp_obj_type_t cell_type = {
- { &mp_const_type },
+ { &mp_type_type },
.name = MP_QSTR_, // should never need to print cell type
};