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 /gnuradio-runtime/python/gnuradio/gr/qa_prefs.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 'gnuradio-runtime/python/gnuradio/gr/qa_prefs.py')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/gr/qa_prefs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/qa_prefs.py b/gnuradio-runtime/python/gnuradio/gr/qa_prefs.py index fcda8f7b53..f5a8c93baf 100644 --- a/gnuradio-runtime/python/gnuradio/gr/qa_prefs.py +++ b/gnuradio-runtime/python/gnuradio/gr/qa_prefs.py @@ -9,9 +9,9 @@ # - from gnuradio import gr, gr_unittest + class test_prefs (gr_unittest.TestCase): def test_001(self): @@ -21,7 +21,9 @@ class test_prefs (gr_unittest.TestCase): self.assertFalse(p.has_option('doesnt', 'exist')) # At the time these tests are run, there is not necessarily a default - # configuration on the build system, so not much to do with testing here + # configuration on the build system, so not much to do with testing + # here + if __name__ == '__main__': gr_unittest.run(test_prefs) |