summaryrefslogtreecommitdiff
path: root/grc/python
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2009-12-06 23:18:27 -0500
committerJosh Blum <josh@joshknows.com>2009-12-06 23:18:27 -0500
commit61830989ce554e6dfac41bba2ced7006c424e0bc (patch)
tree1559e5d38dadbd728048d19429139d57cfe1f9df /grc/python
parenta198e5134b00a1d5b98b5447aafd3cdba8508609 (diff)
removed unused import statements, thanks pyflakes
Diffstat (limited to 'grc/python')
-rw-r--r--grc/python/Constants.py1
-rw-r--r--grc/python/FlowGraph.py2
-rw-r--r--grc/python/Param.py1
3 files changed, 0 insertions, 4 deletions
diff --git a/grc/python/Constants.py b/grc/python/Constants.py
index 439a524209..e661c39278 100644
--- a/grc/python/Constants.py
+++ b/grc/python/Constants.py
@@ -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
diff --git a/grc/python/FlowGraph.py b/grc/python/FlowGraph.py
index 4dd18a81f4..054e17df2e 100644
--- a/grc/python/FlowGraph.py
+++ b/grc/python/FlowGraph.py
@@ -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*)$')
diff --git a/grc/python/Param.py b/grc/python/Param.py
index 81fb6ba7ac..febb112ad3 100644
--- a/grc/python/Param.py
+++ b/grc/python/Param.py
@@ -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