diff options
author | Jay Kamat <jaygkamat@gmail.com> | 2019-10-02 22:50:14 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-03 14:59:52 -0800 |
commit | 3707b014a196065f1d8132a6381f4b8d14626105 (patch) | |
tree | 1ec4c54711eec45f06ac4bae850a6a25d1a8e625 /gnuradio-runtime/examples/volk_benchmark/volk_plot.py | |
parent | a4c439ccd47017822cb8b2ab6af853aa23c5e7e7 (diff) |
volk: Replace star imports with explicit imports
Diffstat (limited to 'gnuradio-runtime/examples/volk_benchmark/volk_plot.py')
-rw-r--r-- | gnuradio-runtime/examples/volk_benchmark/volk_plot.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |