diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-10-07 13:22:06 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-10-07 13:22:06 -0700 |
commit | f089711a8bf61e1260c10f795112d9eed9302248 (patch) | |
tree | 0e3269d3283411dcd564e581f370ae26657f916a /gr-analog/python/analog/qa_random_uniform_source.py | |
parent | 6f2534e64f29a471fef15d1ae19cf536ad620650 (diff) |
analog: fix failing QA test from incorrect import
Diffstat (limited to 'gr-analog/python/analog/qa_random_uniform_source.py')
-rwxr-xr-x | gr-analog/python/analog/qa_random_uniform_source.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gr-analog/python/analog/qa_random_uniform_source.py b/gr-analog/python/analog/qa_random_uniform_source.py index 6a6fb82572..474c5716c7 100755 --- a/gr-analog/python/analog/qa_random_uniform_source.py +++ b/gr-analog/python/analog/qa_random_uniform_source.py @@ -1,29 +1,28 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# +# # Copyright 2015 Free Software Foundation, Inc. -# +# # This file is part of GNU Radio -# +# # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. -# +# # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. -# +# from gnuradio import gr, gr_unittest -from gnuradio import blocks -import analog_swig as analog +from gnuradio import blocks, analog import numpy as np |