aboutsummaryrefslogtreecommitdiff
path: root/py/objboundmeth.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-04-09 15:29:54 +0000
committerDamien George <damien.p.george@gmail.com>2015-04-09 15:29:54 +0000
commit4dea922610c8ea6af285cd49b0a531d4941d820f (patch)
tree9d10a279f23eb71d9ba9cd13e6da69b1ee77d03d /py/objboundmeth.c
parentdf1637c580457234d805154efea1c51a83b1136a (diff)
py: Adjust some spaces in code style/format, purely for consistency.
Diffstat (limited to 'py/objboundmeth.c')
-rw-r--r--py/objboundmeth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objboundmeth.c b/py/objboundmeth.c
index 6e3c5256a..84d201277 100644
--- a/py/objboundmeth.c
+++ b/py/objboundmeth.c
@@ -72,7 +72,7 @@ STATIC mp_obj_t bound_meth_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_
#if MICROPY_PY_FUNCTION_ATTRS
STATIC void bound_meth_load_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
- if(attr == MP_QSTR___name__) {
+ if (attr == MP_QSTR___name__) {
mp_obj_bound_meth_t *o = self_in;
dest[0] = MP_OBJ_NEW_QSTR(mp_obj_fun_get_name(o->meth));
}