diff options
Diffstat (limited to 'grc/core/generator/Generator.py')
-rw-r--r-- | grc/core/generator/Generator.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/grc/core/generator/Generator.py b/grc/core/generator/Generator.py index 9686ab8f00..4bc3fd7cb1 100644 --- a/grc/core/generator/Generator.py +++ b/grc/core/generator/Generator.py @@ -7,19 +7,11 @@ from __future__ import absolute_import -import os - -from mako.template import Template - from .hier_block import HierBlockGenerator, QtHierBlockGenerator from .top_block import TopBlockGenerator from .cpp_top_block import CppTopBlockGenerator from .cpp_hier_block import CppHierBlockGenerator -DATA_DIR = os.path.dirname(__file__) -FLOW_GRAPH_TEMPLATE = os.path.join(DATA_DIR, 'flow_graph.py.mako') -flow_graph_template = Template(filename=FLOW_GRAPH_TEMPLATE) - class Generator(object): """Adaptor for various generators (uses generate_options)""" |