summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/examples
diff options
context:
space:
mode:
authorJay Kamat <jaygkamat@gmail.com>2019-10-02 22:50:14 -0700
committerMartin Braun <martin.braun@ettus.com>2020-01-03 14:59:52 -0800
commit3707b014a196065f1d8132a6381f4b8d14626105 (patch)
tree1ec4c54711eec45f06ac4bae850a6a25d1a8e625 /gnuradio-runtime/examples
parenta4c439ccd47017822cb8b2ab6af853aa23c5e7e7 (diff)
volk: Replace star imports with explicit imports
Diffstat (limited to 'gnuradio-runtime/examples')
-rw-r--r--gnuradio-runtime/examples/volk_benchmark/volk_math.py3
-rw-r--r--gnuradio-runtime/examples/volk_benchmark/volk_plot.py3
-rw-r--r--gnuradio-runtime/examples/volk_benchmark/volk_types.py3
3 files changed, 6 insertions, 3 deletions
diff --git a/gnuradio-runtime/examples/volk_benchmark/volk_math.py b/gnuradio-runtime/examples/volk_benchmark/volk_math.py
index 6fc6cfa78d..f4d81eafdd 100644
--- a/gnuradio-runtime/examples/volk_benchmark/volk_math.py
+++ b/gnuradio-runtime/examples/volk_benchmark/volk_math.py
@@ -5,7 +5,8 @@ from __future__ import unicode_literals
from gnuradio import gr
from gnuradio import blocks
import argparse
-from volk_test_funcs import *
+from volk_test_funcs import (create_connection, new_table, replace_results,
+ helper, timeit, format_results)
try:
from gnuradio import blocks
diff --git a/gnuradio-runtime/examples/volk_benchmark/volk_plot.py b/gnuradio-runtime/examples/volk_benchmark/volk_plot.py
index 2e02773e05..b78f9d0deb 100644
--- a/gnuradio-runtime/examples/volk_benchmark/volk_plot.py
+++ b/gnuradio-runtime/examples/volk_benchmark/volk_plot.py
@@ -4,7 +4,8 @@ from __future__ import division
from __future__ import unicode_literals
import sys, math
import argparse
-from volk_test_funcs import *
+from volk_test_funcs import (create_connection, list_tables, get_results,
+ helper, timeit, format_results)
try:
import matplotlib
diff --git a/gnuradio-runtime/examples/volk_benchmark/volk_types.py b/gnuradio-runtime/examples/volk_benchmark/volk_types.py
index 697ec213c1..647735f22d 100644
--- a/gnuradio-runtime/examples/volk_benchmark/volk_types.py
+++ b/gnuradio-runtime/examples/volk_benchmark/volk_types.py
@@ -5,7 +5,8 @@ from __future__ import unicode_literals
from gnuradio import gr
from gnuradio import blocks
import argparse
-from volk_test_funcs import *
+from volk_test_funcs import (create_connection, new_table, replace_results,
+ helper, timeit, format_results)
######################################################################