diff options
author | mormj <mormjb@gmail.com> | 2020-10-30 10:59:50 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-10-30 17:52:53 +0100 |
commit | 7a0948ba85758fba1cc3858ef99bfa600dcc7416 (patch) | |
tree | 610d7f9d773a193562def6df2d4b50f1bb3b3f86 /gr-blocks/python/blocks/qa_null_sink_source.py | |
parent | 12192ee7d58de95ddca35a3e93bfc172bdb5c820 (diff) |
qa: run autopep8 formatting on qa python files
find ./ -iname qa*.py | xargs autopep8 --in-place -a -a
mostly formats whitespace and gets rid of trailing semicolons
Diffstat (limited to 'gr-blocks/python/blocks/qa_null_sink_source.py')
-rw-r--r-- | gr-blocks/python/blocks/qa_null_sink_source.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_null_sink_source.py b/gr-blocks/python/blocks/qa_null_sink_source.py index d903eb9c0c..b8acdfc027 100644 --- a/gr-blocks/python/blocks/qa_null_sink_source.py +++ b/gr-blocks/python/blocks/qa_null_sink_source.py @@ -12,6 +12,7 @@ from gnuradio import gr, gr_unittest, blocks import math + class test_null_sink_source(gr_unittest.TestCase): def setUp(self): @@ -29,6 +30,6 @@ class test_null_sink_source(gr_unittest.TestCase): self.tb.connect(src, hed, dst) self.tb.run() + if __name__ == '__main__': gr_unittest.run(test_null_sink_source) - |