Skip to content

Commit 375b255

Browse files
committed
Add module to synthio.Biquad doc reference.
1 parent 2975e22 commit 375b255

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shared-bindings/audiofilters/Filter.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ MP_PROPERTY_GETSET(audiofilters_filter_filter_obj,
155155

156156
//| def low_pass_filter(
157157
//| self, frequency: float, q_factor: float = 0.7071067811865475
158-
//| ) -> Biquad:
158+
//| ) -> synthio.Biquad:
159159
//| """Construct a low-pass filter with the given parameters and update the `filter` property.
160160
//|
161161
//| ``frequency``, called f0 in the cookbook, is the corner frequency in Hz
@@ -198,7 +198,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(audiofilters_filter_lpf_obj, 1, audiofilters_filter_o
198198

199199
//| def high_pass_filter(
200200
//| self, frequency: float, q_factor: float = 0.7071067811865475
201-
//| ) -> Biquad:
201+
//| ) -> synthio.Biquad:
202202
//| """Construct a high-pass filter with the given parameters and update the `filter` property.
203203
//|
204204
//| ``frequency``, called f0 in the cookbook, is the corner frequency in Hz
@@ -230,7 +230,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(audiofilters_filter_hpf_obj, 1, audiofilters_filter_o
230230

231231
//| def band_pass_filter(
232232
//| self, frequency: float, q_factor: float = 0.7071067811865475
233-
//| ) -> Biquad:
233+
//| ) -> synthio.Biquad:
234234
//| """Construct a band-pass filter with the given parameters and update the `filter` property.
235235
//|
236236
//| ``frequency``, called f0 in the cookbook, is the center frequency in Hz

0 commit comments

Comments
 (0)