Skip to content

Commit

Permalink
remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzuger committed Nov 25, 2020
1 parent adeeb09 commit 8370fc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tlc5947/tlc5947.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ STATIC mp_obj_t tlc5947_tlc5947_blank(mp_obj_t self_in, mp_obj_t val){
mp_hal_pin_write(self->blank, mp_obj_is_true(val));

return mp_const_none;
};
}

/**
* This function checks if all the jumps ([]) in the string are balanced.
Expand Down Expand Up @@ -1033,7 +1033,7 @@ STATIC mp_obj_t tlc5947_tlc5947_set(mp_obj_t self_in, mp_obj_t led_in, mp_obj_t
dump_pattern_map(self);

return mp_obj_new_int(pid);
};
}

STATIC mp_obj_t tlc5947_tlc5947_replace(mp_obj_t self_in, mp_obj_t pid_in, mp_obj_t pattern_in){
tlc5947_tlc5947_obj_t *self = MP_OBJ_TO_PTR(self_in);
Expand Down Expand Up @@ -1118,7 +1118,7 @@ STATIC mp_obj_t tlc5947_tlc5947_get(mp_obj_t self_in, mp_obj_t led_in){
str[6] = gethex( c.b&0x0F);
str[7] = 0;
return mp_obj_new_str(str, 7);
};
}

STATIC mp_obj_t tlc5947_tlc5947_exists(mp_obj_t self_in, mp_obj_t pid_in){
tlc5947_tlc5947_obj_t *self = MP_OBJ_TO_PTR(self_in);
Expand Down

0 comments on commit 8370fc8

Please sign in to comment.