aboutsummaryrefslogtreecommitdiff
path: root/uritemplate/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'uritemplate/__init__.py')
-rw-r--r--uritemplate/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 03abf08..8e76ea5 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -19,6 +19,8 @@ __copyright__ = 'Copyright 2013 Ian Cordasco'
__version__ = '2.0.0rc1'
__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit())
-from uritemplate.api import URITemplate, expand, partial # noqa: E402
+from uritemplate.api import (
+ URITemplate, expand, partial, variables # noqa: E402
+)
-__all__ = ('URITemplate', 'expand', 'partial')
+__all__ = ('URITemplate', 'expand', 'partial', 'variables')