diff options
Diffstat (limited to 'py/objcell.c')
-rw-r--r-- | py/objcell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objcell.c b/py/objcell.c index 04c7f36851..ce8f360141 100644 --- a/py/objcell.c +++ b/py/objcell.c @@ -26,7 +26,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 }, - "cell", + .name = MP_QSTR_, // should never need to print cell type }; mp_obj_t mp_obj_new_cell(mp_obj_t obj) { |