mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
A bit of stylistic cleanup (chose the wrong side during conflict resolution).
This commit is contained in:
@@ -293,8 +293,8 @@ static const mp_method_t list_type_methods[] = {
|
||||
};
|
||||
|
||||
const mp_obj_type_t list_type = {
|
||||
.base = { &mp_const_type },
|
||||
.name = "list",
|
||||
{ &mp_const_type },
|
||||
"list",
|
||||
.print = list_print,
|
||||
.make_new = list_make_new,
|
||||
.binary_op = list_binary_op,
|
||||
@@ -360,8 +360,8 @@ mp_obj_t list_it_iternext(mp_obj_t self_in) {
|
||||
}
|
||||
|
||||
static const mp_obj_type_t list_it_type = {
|
||||
.base = { &mp_const_type },
|
||||
.name = "list_iterator",
|
||||
{ &mp_const_type },
|
||||
"list_iterator",
|
||||
.iternext = list_it_iternext,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user