From d2fd7a9ffef65a68b51dec2611e32301f6c5184b Mon Sep 17 00:00:00 2001 From: Vincent Quenneville-Belair Date: Mon, 18 Nov 2019 11:22:27 -0500 Subject: [PATCH] fix python 2 flake8 error with character encoding. --- torchaudio/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchaudio/functional.py b/torchaudio/functional.py index 0bd130dff7..7539f371d4 100644 --- a/torchaudio/functional.py +++ b/torchaudio/functional.py @@ -703,7 +703,7 @@ def equalizer_biquad(waveform, sample_rate, center_freq, gain, Q=0.707): Args: waveform (torch.Tensor): audio waveform of dimension of `(channel, time)` sample_rate (int): sampling rate of the waveform, e.g. 44100 (Hz) - center_freq (float): filter’s central frequency + center_freq (float): filter's central frequency gain (float): desired gain at the boost (or attenuation) in dB q_factor (float): https://en.wikipedia.org/wiki/Q_factor