From 661d9d1901d3afcc9fdee7e4ab7cfd17688cb7d0 Mon Sep 17 00:00:00 2001 From: Tom Soulanille Date: Tue, 15 Sep 2015 14:30:52 -0700 Subject: [PATCH] py/objslice: Fix indent. --- py/objslice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/objslice.c b/py/objslice.c index 1ef16ec23..d0e8e7e73 100644 --- a/py/objslice.c +++ b/py/objslice.c @@ -79,7 +79,7 @@ const mp_obj_type_t mp_type_slice = { .name = MP_QSTR_slice, .print = slice_print, #if MICROPY_PY_BUILTINS_SLICE_ATTRS - .attr = slice_attr, + .attr = slice_attr, #endif };