summaryrefslogtreecommitdiff
path: root/grc/core/FlowGraph.py
diff options
context:
space:
mode:
authorSebastian Koslowski <koslowski@kit.edu>2016-02-05 16:44:10 +0100
committerSebastian Koslowski <koslowski@kit.edu>2016-02-17 19:55:17 +0100
commit9023d2ad1ad5d1704bbe7fe942e42156a1f273a4 (patch)
treecd1b46eaa3a8f38a8eed424be6d6bab330024221 /grc/core/FlowGraph.py
parent412df3a17ec35277f5a1d2f21c6f9a287f9ef8ad (diff)
grc-refactor: cmake fixes and more reorganizing
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r--grc/core/FlowGraph.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py
index fd391c6b32..e7a4b10c80 100644
--- a/grc/core/FlowGraph.py
+++ b/grc/core/FlowGraph.py
@@ -15,18 +15,17 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
-import re
import imp
import time
-from operator import methodcaller
from itertools import ifilter, chain
+from operator import methodcaller
-from ..gui import Messages
+import re
-from . import expr_utils
-from .odict import odict
-from .Element import Element
+from .utils import odict, expr_utils
from .Constants import FLOW_GRAPH_FILE_FORMAT_VERSION
+from .Element import Element
+from ..gui import Messages
_variable_matcher = re.compile('^(variable\w*)$')
_parameter_matcher = re.compile('^(parameter)$')