From 5c24f9a12775ae5a6b7b48c040211629b0b07ade Mon Sep 17 00:00:00 2001 From: Adrien Michel Date: Thu, 12 Dec 2024 22:57:59 +0100 Subject: [PATCH] fix: CI E261 at least two spaces before inline comment Signed-off-by: Adrien Michel --- gr-analog/python/analog/wfm_tx.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gr-analog/python/analog/wfm_tx.py b/gr-analog/python/analog/wfm_tx.py index 70e91f82616..241242814d8 100644 --- a/gr-analog/python/analog/wfm_tx.py +++ b/gr-analog/python/analog/wfm_tx.py @@ -51,12 +51,12 @@ def __init__(self, audio_rate, quad_rate, tau=75e-6, max_dev=75e3, fh=-1.0): if do_interp: interp_factor = quad_rate // audio_rate - interp_taps = filter.optfir.low_pass(interp_factor, # gain - quad_rate, # Fs - 16000, # passband cutoff - 18000, # stopband cutoff - 0.1, # passband ripple dB - 40) # stopband atten dB + interp_taps = filter.optfir.low_pass(interp_factor, # gain + quad_rate, # Fs + 16000, # passband cutoff + 18000, # stopband cutoff + 0.1, # passband ripple dB + 40) # stopband atten dB print("len(interp_taps) =", len(interp_taps)) self.interpolator = filter.interp_fir_filter_fff(