Skip to content

Commit

Permalink
Fixed package level imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
akornatskyy committed Aug 9, 2020
1 parent b41726c commit 45acb1e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/wheezy/template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
"""
"""

# flake8: noqa
from wheezy.template.engine import Engine
from wheezy.template.ext.code import CodeExtension
from wheezy.template.ext.core import CoreExtension
from wheezy.template.loader import DictLoader, FileLoader, PreprocessLoader
from wheezy.template.preprocessor import Preprocessor

__all__ = (
"Engine",
"CodeExtension",
"CoreExtension",
"DictLoader",
"FileLoader",
"PreprocessLoader",
"Preprocessor",
)

__version__ = "0.1"

0 comments on commit 45acb1e

Please sign in to comment.