aboutsummaryrefslogtreecommitdiff
path: root/testcases/realtime/tools/ftqviz.py
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/realtime/tools/ftqviz.py')
-rw-r--r--testcases/realtime/tools/ftqviz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/realtime/tools/ftqviz.py b/testcases/realtime/tools/ftqviz.py
index 5ac094cbd..f56d41aa6 100644
--- a/testcases/realtime/tools/ftqviz.py
+++ b/testcases/realtime/tools/ftqviz.py
@@ -45,7 +45,7 @@ def smooth(x, wlen):
# generate the smoothed signal
y = convolve(w/w.sum(), s, mode='same')
- # recenter the the smoothed signal over the originals (slide along x)
+ # recenter the smoothed signal over the originals (slide along x)
y1 = y[wlen-1:-wlen+1]
return y1