diff options
author | Tom Soulanille <soul@prama.com> | 2015-09-15 14:30:52 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-15 22:46:30 +0100 |
commit | 661d9d1901d3afcc9fdee7e4ab7cfd17688cb7d0 (patch) | |
tree | 5b9d2fd40b4a6c66429a90caa5efd6933e6dcfb6 /py | |
parent | aeb62f9ae3169d789800591eea390e020c7532bf (diff) | |
download | micropython-661d9d1901d3afcc9fdee7e4ab7cfd17688cb7d0.tar.gz micropython-661d9d1901d3afcc9fdee7e4ab7cfd17688cb7d0.zip |
py/objslice: Fix indent.
Diffstat (limited to 'py')
-rw-r--r-- | py/objslice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objslice.c b/py/objslice.c index 1ef16ec233..d0e8e7e73e 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 }; |