aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/language/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pathod/language/__init__.py')
-rw-r--r--pathod/language/__init__.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/pathod/language/__init__.py b/pathod/language/__init__.py
index 10da93ba..399baa3e 100644
--- a/pathod/language/__init__.py
+++ b/pathod/language/__init__.py
@@ -7,9 +7,13 @@ import pyparsing as pp
from . import http, http2, websockets, writer, exceptions
-from .exceptions import *
+from .exceptions import RenderError, FileAccessDenied, ParseException
from .base import Settings
-assert Settings # prevent pyflakes from messing with this
+
+__all__ = [
+ "RenderError", "FileAccessDenied", "ParseException",
+ "Settings",
+]
def expand(msg):