[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-11-04 05:16:09 +00:00
parent 981fa9bafd
commit 5717e7cc8f

View File

@ -8,6 +8,7 @@ Code based on https://webaudio.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.htm
Alternatively, you can use scipy.signal.butter, which should yield the same results. Alternatively, you can use scipy.signal.butter, which should yield the same results.
""" """
def make_lowpass( def make_lowpass(
frequency: int, frequency: int,
samplerate: int, samplerate: int,
@ -234,4 +235,5 @@ def make_highshelf(
if __name__ == "__main__": if __name__ == "__main__":
import doctest import doctest
doctest.testmod() doctest.testmod()