diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-09-11 11:33:30 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2019-09-11 11:33:30 +0200 |
commit | 935047878ba6ad473d2d32b8163e124bc7b2e5c2 (patch) | |
tree | 339ed4ba388b51e568e67ffdac999829de4451ac | |
parent | c0a33617f9d304933322496c1b7b36f0d3882c1b (diff) |
Missing import in __init__.py
-rw-r--r-- | lesana/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lesana/__init__.py b/lesana/__init__.py index 008f5ac..6665ca8 100644 --- a/lesana/__init__.py +++ b/lesana/__init__.py @@ -1,5 +1,6 @@ -from .collection import Collection, Entry +from .collection import Collection, Entry, TemplatingError # prevent spurious warnings from pyflakes assert Collection assert Entry +assert TemplatingError |