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, NumberRangeType,
ScalarListType, ScalarListType,
ScalarListException, ScalarListException,
TimezoneType,
TSVectorType, TSVectorType,
UUIDType, UUIDType,
) )
@@ -58,6 +59,7 @@ __all__ = (
ProxyDict, ProxyDict,
ScalarListType, ScalarListType,
ScalarListException, ScalarListException,
TimezoneType,
TSVectorType, TSVectorType,
UUIDType, UUIDType,
) )

View File

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