Skip to content

Commit 20c5bed

Browse files
committed
run pre-commit
1 parent 6054810 commit 20c5bed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared-bindings/synthio/BlockBiquad.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ MP_PROPERTY_GETSET(synthio_block_biquad_frequency_obj,
146146
//| Q: BlockInput
147147
//| """The sharpness (Q) of the filter"""
148148
//|
149-
//|
150149
static mp_obj_t synthio_block_biquad_get_Q(mp_obj_t self_in) {
151150
synthio_block_biquad_t *self = MP_OBJ_TO_PTR(self_in);
152151
return common_hal_synthio_block_biquad_get_Q(self);
@@ -171,6 +170,7 @@ MP_PROPERTY_GETSET(synthio_block_biquad_Q_obj,
171170
//| to the filter gain according to the formula ``A = 10^(dBgain/40)``.
172171
//| """
173172
//|
173+
//|
174174
static mp_obj_t synthio_block_biquad_get_A(mp_obj_t self_in) {
175175
synthio_block_biquad_t *self = MP_OBJ_TO_PTR(self_in);
176176
return common_hal_synthio_block_biquad_get_A(self);

shared-bindings/synthio/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
//| At least 2 simultaneous notes are supported. samd5x, mimxrt10xx and rp2040 platforms support up to 12 notes.
3333
//| """
3434
//|
35-
//|
3635

3736
//| AnyBiquad = Union["Biquad", "BlockBiquad"]
3837
//|
38+
//|
3939
//| class EnvelopeState:
4040
//| ATTACK: EnvelopeState
4141
//| """The note is in its attack phase"""

0 commit comments

Comments
 (0)