From bc074971a2a2e4389c2187387f4c3807960676ee Mon Sep 17 00:00:00 2001 From: checktheroads Date: Tue, 13 Aug 2019 14:14:33 -0700 Subject: [PATCH] :art: Break render into separate functions --- hyperglass/render/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hyperglass/render/__init__.py b/hyperglass/render/__init__.py index 9514c53..069fea9 100644 --- a/hyperglass/render/__init__.py +++ b/hyperglass/render/__init__.py @@ -1,6 +1,11 @@ """ Renders Jinja2 & Sass templates for use by the front end application """ + +from hyperglass.render.html import render_html +from hyperglass.render.webassets import render_assets + +''' # Standard Library Imports from pathlib import Path @@ -216,3 +221,4 @@ def css(): except sass.CompileError as sassy: logger.error(f"Error compiling Sass in file {scss_file}.") raise HyperglassError(sassy) +'''