diff options
author | Josh Morman <jmorman@gnuradio.org> | 2021-11-24 12:03:48 -0500 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-11-24 14:41:53 -0500 |
commit | 25e2e7287b20e8dd8e5cf9c0fe07eb754b81c10c (patch) | |
tree | 0b76f5866d4ddf592d750ac4548ba7192d505f9e /gr-blocks/python/blocks/qa_add_mult_v.py | |
parent | 42e58f1ca211115e9a76922c36dfbf2b1ad39978 (diff) |
blocks: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'gr-blocks/python/blocks/qa_add_mult_v.py')
-rw-r--r-- | gr-blocks/python/blocks/qa_add_mult_v.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/python/blocks/qa_add_mult_v.py b/gr-blocks/python/blocks/qa_add_mult_v.py index 39f11bc4be..5568b20536 100644 --- a/gr-blocks/python/blocks/qa_add_mult_v.py +++ b/gr-blocks/python/blocks/qa_add_mult_v.py @@ -344,8 +344,8 @@ class test_add_mult_v(gr_unittest.TestCase): 25.0 + 26.0j, 27.0 + 28.0j, 29.0 + 30.0j] - expected_result = [-1021.0 + 428.0j, -2647.0 + 1754.0j, - \ - 4945.0 + 3704.0j, -8011.0 + 6374.0j, -11941.0 + 9860.0j] + expected_result = [-1021.0 + 428.0j, -2647.0 + 1754.0j, - + 4945.0 + 3704.0j, -8011.0 + 6374.0j, -11941.0 + 9860.0j] op = blocks.multiply_cc(5) self.help_cc(5, (src1_data, src2_data, src3_data), expected_result, op) |