diff options
Diffstat (limited to 'gr-utils/plot_tools')
-rwxr-xr-x | gr-utils/plot_tools/gr_plot | 2 | ||||
-rwxr-xr-x | gr-utils/plot_tools/gr_plot_const | 2 | ||||
-rwxr-xr-x | gr-utils/plot_tools/gr_plot_iq | 2 | ||||
-rw-r--r-- | gr-utils/plot_tools/plot_data.py | 3 | ||||
-rw-r--r-- | gr-utils/plot_tools/plot_fft_base.py | 3 | ||||
-rw-r--r-- | gr-utils/plot_tools/plot_psd_base.py | 3 | ||||
-rw-r--r-- | gr-utils/plot_tools/pyqt_filter.py | 1 |
7 files changed, 0 insertions, 16 deletions
diff --git a/gr-utils/plot_tools/gr_plot b/gr-utils/plot_tools/gr_plot index 82fe846dc2..84601fda02 100755 --- a/gr-utils/plot_tools/gr_plot +++ b/gr-utils/plot_tools/gr_plot @@ -8,8 +8,6 @@ # # -from __future__ import print_function - from gnuradio.plot_data import plot_data diff --git a/gr-utils/plot_tools/gr_plot_const b/gr-utils/plot_tools/gr_plot_const index 808fb7d1ad..be525b473a 100755 --- a/gr-utils/plot_tools/gr_plot_const +++ b/gr-utils/plot_tools/gr_plot_const @@ -8,8 +8,6 @@ # # -from __future__ import print_function - import numpy try: diff --git a/gr-utils/plot_tools/gr_plot_iq b/gr-utils/plot_tools/gr_plot_iq index 2b86159d7e..846f62b802 100755 --- a/gr-utils/plot_tools/gr_plot_iq +++ b/gr-utils/plot_tools/gr_plot_iq @@ -8,8 +8,6 @@ # # -from __future__ import print_function - import numpy try: diff --git a/gr-utils/plot_tools/plot_data.py b/gr-utils/plot_tools/plot_data.py index a311f8711d..4a42659514 100644 --- a/gr-utils/plot_tools/plot_data.py +++ b/gr-utils/plot_tools/plot_data.py @@ -10,9 +10,6 @@ Utility to help plotting data from files. """ -from __future__ import print_function -from __future__ import division -from __future__ import unicode_literals from argparse import ArgumentParser diff --git a/gr-utils/plot_tools/plot_fft_base.py b/gr-utils/plot_tools/plot_fft_base.py index f9fa8b5069..9cfb0f2ec4 100644 --- a/gr-utils/plot_tools/plot_fft_base.py +++ b/gr-utils/plot_tools/plot_fft_base.py @@ -8,9 +8,6 @@ # # -from __future__ import print_function -from __future__ import division -from __future__ import unicode_literals import numpy from numpy.fft import fftpack diff --git a/gr-utils/plot_tools/plot_psd_base.py b/gr-utils/plot_tools/plot_psd_base.py index 812ec3a292..3d78af0dd1 100644 --- a/gr-utils/plot_tools/plot_psd_base.py +++ b/gr-utils/plot_tools/plot_psd_base.py @@ -8,9 +8,6 @@ # # -from __future__ import print_function -from __future__ import division -from __future__ import unicode_literals import numpy try: diff --git a/gr-utils/plot_tools/pyqt_filter.py b/gr-utils/plot_tools/pyqt_filter.py index fac17644d3..0c781f2347 100644 --- a/gr-utils/plot_tools/pyqt_filter.py +++ b/gr-utils/plot_tools/pyqt_filter.py @@ -7,7 +7,6 @@ # # WARNING! All changes made in this file will be lost! -from __future__ import unicode_literals from PyQt4 import QtCore, QtGui class Ui_MainWindow(object): |