diff options
author | Sebastian Koslowski <sebastian.koslowski@gmail.com> | 2016-05-03 17:13:08 +0200 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2017-06-29 09:16:49 -0700 |
commit | 7f7fa2f91467fdb2b11312be8562e7b51fdeb199 (patch) | |
tree | 24268bac15b9920d2a15ddbb45eaf3b9b03718a1 /grc/core/utils/__init__.py | |
parent | 44cae388881821942e691a4d69a923bbd8d347db (diff) |
grc: added yaml/mako support
Includes basic converter from XML/Cheetah to YAML/Mako based block format.
Diffstat (limited to 'grc/core/utils/__init__.py')
-rw-r--r-- | grc/core/utils/__init__.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/grc/core/utils/__init__.py b/grc/core/utils/__init__.py index d095179a10..2d12e280b5 100644 --- a/grc/core/utils/__init__.py +++ b/grc/core/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2008-2015 Free Software Foundation, Inc. +# Copyright 2016 Free Software Foundation, Inc. # This file is part of GNU Radio # # GNU Radio Companion is free software; you can redistribute it and/or @@ -17,8 +17,4 @@ from __future__ import absolute_import -from . import expr_utils -from . import epy_block_io -from . import extract_docs - -from ._complexity import calculate_flowgraph_complexity +from . import epy_block_io, expr_utils, extract_docs, flow_graph_complexity |