diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-09 15:29:54 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-09 15:29:54 +0000 |
commit | 4dea922610c8ea6af285cd49b0a531d4941d820f (patch) | |
tree | 9d10a279f23eb71d9ba9cd13e6da69b1ee77d03d /py/objfun.c | |
parent | df1637c580457234d805154efea1c51a83b1136a (diff) |
py: Adjust some spaces in code style/format, purely for consistency.
Diffstat (limited to 'py/objfun.c')
-rw-r--r-- | py/objfun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objfun.c b/py/objfun.c index 48c51053d..76adfef50 100644 --- a/py/objfun.c +++ b/py/objfun.c @@ -297,7 +297,7 @@ STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw, #if MICROPY_PY_FUNCTION_ATTRS STATIC void fun_bc_load_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) { - if(attr == MP_QSTR___name__) { + if (attr == MP_QSTR___name__) { dest[0] = MP_OBJ_NEW_QSTR(mp_obj_fun_get_name(self_in)); } } |