From 9023d2ad1ad5d1704bbe7fe942e42156a1f273a4 Mon Sep 17 00:00:00 2001 From: Sebastian Koslowski <koslowski@kit.edu> Date: Fri, 5 Feb 2016 16:44:10 +0100 Subject: grc-refactor: cmake fixes and more reorganizing --- grc/core/FlowGraph.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'grc/core/FlowGraph.py') 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)$') -- cgit v1.2.3