summaryrefslogtreecommitdiff
path: root/gr-fft/python
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2014-07-07 12:18:00 -0400
committerTom Rondeau <tom@trondeau.com>2014-07-07 12:18:00 -0400
commit597b93798a804cde1783d6d2ab53b348d57c44cd (patch)
treeb65e73bb0de634ff5d209b15971ebdabf369a45c /gr-fft/python
parent1151e5502ccd440ebd89599cf7e4be4fb5ed8334 (diff)
Removing trailing/extra whitespaces before release.
We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
Diffstat (limited to 'gr-fft/python')
-rw-r--r--gr-fft/python/fft/logpwrfft.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-fft/python/fft/logpwrfft.py b/gr-fft/python/fft/logpwrfft.py
index fb8ba04622..356ec1217b 100644
--- a/gr-fft/python/fft/logpwrfft.py
+++ b/gr-fft/python/fft/logpwrfft.py
@@ -41,7 +41,7 @@ class _logpwrfft_base(gr.hier_block2):
"""
Create an log10(abs(fft)) stream chain.
Provide access to the setting the filter and sample rate.
-
+
Args:
sample_rate: Incoming stream sample rate
fft_size: Number of FFT bins
@@ -81,7 +81,7 @@ class _logpwrfft_base(gr.hier_block2):
def set_decimation(self, decim):
"""
Set the decimation on stream decimator.
-
+
Args:
decim: the new decimation
"""
@@ -90,7 +90,7 @@ class _logpwrfft_base(gr.hier_block2):
def set_vec_rate(self, vec_rate):
"""
Set the vector rate on stream decimator.
-
+
Args:
vec_rate: the new vector rate
"""
@@ -99,7 +99,7 @@ class _logpwrfft_base(gr.hier_block2):
def set_sample_rate(self, sample_rate):
"""
Set the new sampling rate
-
+
Args:
sample_rate: the new rate
"""
@@ -108,7 +108,7 @@ class _logpwrfft_base(gr.hier_block2):
def set_average(self, average):
"""
Set the averaging filter on/off.
-
+
Args:
average: true to set averaging on
"""
@@ -121,7 +121,7 @@ class _logpwrfft_base(gr.hier_block2):
def set_avg_alpha(self, avg_alpha):
"""
Set the average alpha and set the taps if average was on.
-
+
Args:
avg_alpha: the new iir filter tap
"""