Expose TimezoneType from root.

This commit is contained in:
Ryan Leckey
2013-07-26 01:15:50 -07:00
parent 175176c82b
commit 805a0b57aa
2 changed files with 4 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ from .types import (
NumberRangeType,
ScalarListType,
ScalarListException,
TimezoneType,
TSVectorType,
UUIDType,
)
@@ -58,6 +59,7 @@ __all__ = (
ProxyDict,
ScalarListType,
ScalarListException,
TimezoneType,
TSVectorType,
UUIDType,
)

View File

@@ -15,6 +15,7 @@ from .number_range import (
from .password import Password, PasswordType
from .phone_number import PhoneNumber, PhoneNumberType
from .scalar_list import ScalarListException, ScalarListType
from .timezone import TimezoneType
from .uuid import UUIDType
@@ -33,6 +34,7 @@ __all__ = (
PhoneNumberType,
ScalarListException,
ScalarListType,
TimezoneType,
UUIDType,
)