diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-04 15:53:11 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-04 15:53:11 +0100 |
commit | 2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c (patch) | |
tree | f49a2102931919c96bcde3f1bfa16b0ec8b2e27d /py/objtype.c | |
parent | 7f59b4b2ca28179c72aa12f35fe59cb14017b5b0 (diff) | |
download | micropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.tar.gz micropython-2801e6fad8b8b3ecdd9c8bc58f9515ff66eca46c.zip |
py: Some trivial cosmetic changes, for code style consistency.
Diffstat (limited to 'py/objtype.c')
-rw-r--r-- | py/objtype.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objtype.c b/py/objtype.c index 8624a4ff32..157d8e73ab 100644 --- a/py/objtype.c +++ b/py/objtype.c @@ -1051,11 +1051,11 @@ STATIC mp_obj_t static_class_method_make_new(mp_obj_t self_in, mp_uint_t n_args, const mp_obj_type_t mp_type_staticmethod = { { &mp_type_type }, .name = MP_QSTR_staticmethod, - .make_new = static_class_method_make_new + .make_new = static_class_method_make_new, }; const mp_obj_type_t mp_type_classmethod = { { &mp_type_type }, .name = MP_QSTR_classmethod, - .make_new = static_class_method_make_new + .make_new = static_class_method_make_new, }; |