Skip to content

Commit

Permalink
fix: CI E261 at least two spaces before inline comment
Browse files Browse the repository at this point in the history
Signed-off-by: Adrien Michel <adriengit@users.noreply.github.com>
  • Loading branch information
adriengit committed Dec 12, 2024
1 parent 7b13a19 commit 08aec5c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions gr-analog/python/analog/wfm_tx.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +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.firdes.low_pass(interp_factor, # gain
quad_rate, # Fs
19000, # cutoff_freq
4000) # transition_width
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(
interp_factor, interp_taps)
Expand Down

0 comments on commit 08aec5c

Please sign in to comment.