diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-05 16:44:10 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-17 19:55:17 +0100 |
commit | 9023d2ad1ad5d1704bbe7fe942e42156a1f273a4 (patch) | |
tree | cd1b46eaa3a8f38a8eed424be6d6bab330024221 /grc/core/Block.py | |
parent | 412df3a17ec35277f5a1d2f21c6f9a287f9ef8ad (diff) |
grc-refactor: cmake fixes and more reorganizing
Diffstat (limited to 'grc/core/Block.py')
-rw-r--r-- | grc/core/Block.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/grc/core/Block.py b/grc/core/Block.py index 8af3e98456..d36fe3b049 100644 --- a/grc/core/Block.py +++ b/grc/core/Block.py @@ -23,17 +23,15 @@ import itertools from Cheetah.Template import Template from UserDict import UserDict +from .utils import epy_block_io, odict from . Constants import ( BLOCK_FLAG_NEED_QT_GUI, BLOCK_FLAG_NEED_WX_GUI, ADVANCED_PARAM_TAB, DEFAULT_PARAM_TAB, BLOCK_FLAG_THROTTLE, BLOCK_FLAG_DISABLE_BYPASS, BLOCK_ENABLED, BLOCK_BYPASSED, BLOCK_DISABLED ) - -from . import epy_block_io -from . odict import odict -from . FlowGraph import _variable_matcher from . Element import Element +from . FlowGraph import _variable_matcher class TemplateArg(UserDict): |