summaryrefslogtreecommitdiff
path: root/gr-blocks/python/blocks/qa_stream_demux.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/python/blocks/qa_stream_demux.py')
-rwxr-xr-xgr-blocks/python/blocks/qa_stream_demux.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/blocks/qa_stream_demux.py b/gr-blocks/python/blocks/qa_stream_demux.py
index 629c35283c..a03a125d01 100755
--- a/gr-blocks/python/blocks/qa_stream_demux.py
+++ b/gr-blocks/python/blocks/qa_stream_demux.py
@@ -69,8 +69,8 @@ class qa_stream_demux(gr_unittest.TestCase):
return (dst0.data(), dst1.data())
def help_stream_tag_propagation(self, N, stream_sizes):
- src_data = (stream_sizes[0] * [1, ] + stream_sizes[1]
- * [2, ] + stream_sizes[2] * [3, ]) * N
+ src_data = (stream_sizes[0] * [1, ] + stream_sizes[1] *
+ [2, ] + stream_sizes[2] * [3, ]) * N
src = blocks.vector_source_f(src_data, False)