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 3349d48 commit 5c24f9a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gr-analog/python/analog/wfm_tx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 5c24f9a

Please sign in to comment.