removed unused import statements, thanks pyflakes
authorJosh Blum <josh@joshknows.com>
Mon, 7 Dec 2009 04:18:27 +0000 (23:18 -0500)
committerJosh Blum <josh@joshknows.com>
Mon, 7 Dec 2009 04:18:27 +0000 (23:18 -0500)
12 files changed:
grc/base/Block.py
grc/base/FlowGraph.py
grc/grc_gnuradio/usrp/dual_usrp.py
grc/grc_gnuradio/usrp/simple_usrp.py
grc/grc_gnuradio/wxgui/top_block_gui.py
grc/gui/ActionHandler.py
grc/gui/Dialogs.py
grc/gui/Element.py
grc/gui/FlowGraph.py
grc/python/Constants.py
grc/python/FlowGraph.py
grc/python/Param.py

index b2015cc403ec4f5cffab3284e82311f8e350fb74..42eb6b3fbcfb23368bbf9417977eda07df2667f0 100644 (file)
@@ -19,8 +19,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
 from . import odict
 from Element import Element
-from Param import Param
-from Port import Port
 
 from Cheetah.Template import Template
 from UserDict import UserDict
index 7c51ef42a475a7fb0ba6fceff4465c2131c079a3..b4ac8fc3a2bf6a489d027cd07d77c8dae7b48eec 100644 (file)
@@ -19,8 +19,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
 from . import odict
 from Element import Element
-from Block import Block
-from Connection import Connection
 from .. gui import Messages
 
 class FlowGraph(Element):
index 3692e17602148c9d674e648eb7a1a157f86e93a2..b26dbddd41f899c7be1fcc678755bcf3642a6aa2 100644 (file)
@@ -19,7 +19,7 @@
 #
 
 import common
-from gnuradio import gr, usrp
+from gnuradio import gr
 
 ####################################################################
 # Dual USRP Source
index fc4c75bf0618598dab80b60fc0df990a7e623c92..fb7a39570f0dead666abe6a4290e688f2580117b 100644 (file)
@@ -19,7 +19,7 @@
 #
 
 import common
-from gnuradio import gr, usrp
+from gnuradio import gr
 
 ####################################################################
 # Simple USRP Source
index 998575897399c6d7db643dfb0a37d735c1644b45..333ccf1c1203a2caca749a324efc677188917f8b 100644 (file)
@@ -19,7 +19,6 @@
 #
 
 import wx
-import sys, os
 from gnuradio import gr
 import panel
 
index ee3e19a6c6628db3d4e79ab1a4facd3e85bc8a8d..108e23a2355da942434e81f6a5d856401f830728 100644 (file)
@@ -29,7 +29,6 @@ import Preferences
 from threading import Thread
 import Messages
 from .. base import ParseXML
-import random
 from MainWindow import MainWindow
 from PropsDialog import PropsDialog
 import Dialogs
index af40f47c088a38d57baebc2dc20477a25fcb9b35..473c796aff23bf6efe931612cc859f52f30f891d 100644 (file)
@@ -20,7 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 import pygtk
 pygtk.require('2.0')
 import gtk
-import Preferences
 import Utils
 
 class TextDisplay(gtk.TextView):
index f0518ee12ba56883debd666ede1a8e31c12bc8fe..e020c5caa9ba5854bf91f2dc0b8ff0deb00acfa6 100644 (file)
@@ -17,9 +17,6 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 
-import pygtk
-pygtk.require('2.0')
-import gtk
 from Constants import LINE_SELECT_SENSITIVITY
 from Constants import POSSIBLE_ROTATIONS
 
index 8feb171f1fd15e1a25c1f24013f56d8a6dd1f768..5adecccc13a063e756825b37ed24e5652da318f0 100644 (file)
@@ -22,7 +22,6 @@ import Actions
 import Colors
 import Utils
 from Element import Element
-from .. base import FlowGraph as _FlowGraph
 import pygtk
 pygtk.require('2.0')
 import gtk
index 439a524209da7277526f81b1b0f6f92194345c0c..e661c392782a2501fe740a2485278041c41aa77c 100644 (file)
@@ -18,7 +18,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 
 import os
-import sys
 import stat
 from gnuradio import gr
 
index 4dd18a81f4cd230dbec042dfb77a2068129ed859..054e17df2e3242466217ad4ba5f3f78fa89ed944 100644 (file)
@@ -20,8 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 import expr_utils
 from .. base.FlowGraph import FlowGraph as _FlowGraph
 from .. gui.FlowGraph import FlowGraph as _GUIFlowGraph
-from Block import Block
-from Connection import Connection
 import re
 
 _variable_matcher = re.compile('^(variable\w*)$')
index 81fb6ba7acb7b48407fc2197099223a7a6780fe5..febb112ad3a1f4404b71574c1b1e5394e440240f 100644 (file)
@@ -17,7 +17,6 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 """
 
-import expr_utils
 from .. base.Param import Param as _Param
 from .. gui.Param import Param as _GUIParam
 from .. gui.Param import EntryParam