Skip to content

Commit 4b10b91

Browse files
committed
remove useless comments
1 parent 839bbd3 commit 4b10b91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared-bindings/synthio/LFO.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static const uint16_t triangle[] = {0, 32767, 0, -32767};
7777
//| once: bool = False,
7878
//| interpolate: bool = True,
7979
//| ) -> None:
80-
//| """Initialize an instance of the class."""
80+
//| pass
8181
static const mp_arg_t lfo_properties[] = {
8282
{ MP_QSTR_waveform, MP_ARG_OBJ, {.u_obj = MP_ROM_NONE } },
8383
{ MP_QSTR_rate, MP_ARG_OBJ | MP_ARG_KW_ONLY, {.u_obj = MP_ROM_INT(1) } },

shared-bindings/synthio/Math.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ MAKE_ENUM_TYPE(synthio, MathOperation, synthio_math_operation,
134134
//| b: BlockInput = 0.0,
135135
//| c: BlockInput = 1.0,
136136
//| ) -> None:
137-
//| """Initialize an instance of the class."""
137+
//| pass
138138
static const mp_arg_t math_properties[] = {
139139
{ MP_QSTR_operation, MP_ARG_OBJ | MP_ARG_REQUIRED, {.u_obj = NULL } },
140140
{ MP_QSTR_a, MP_ARG_OBJ | MP_ARG_REQUIRED, {.u_obj = NULL } },

0 commit comments

Comments
 (0)