aboutsummaryrefslogtreecommitdiff
path: root/py/objcell.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objcell.c')
-rw-r--r--py/objcell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objcell.c b/py/objcell.c
index 111906412..be2ae8cd9 100644
--- a/py/objcell.c
+++ b/py/objcell.c
@@ -58,9 +58,9 @@ STATIC void cell_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t k
STATIC const mp_obj_type_t mp_type_cell = {
{ &mp_type_type },
.name = MP_QSTR_, // cell representation is just value in < >
-#if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_DETAILED
+ #if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_DETAILED
.print = cell_print,
-#endif
+ #endif
};
mp_obj_t mp_obj_new_cell(mp_obj_t obj) {