Make JSONType importable from root

This commit is contained in:
Tarjei Husøy
2013-12-14 21:55:20 +01:00
parent 74417bef29
commit cc6e20974c
2 changed files with 3 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ from .types import (
instrumented_list, instrumented_list,
InstrumentedList, InstrumentedList,
IPAddressType, IPAddressType,
JSONType,
LocaleType, LocaleType,
Password, Password,
PasswordType, PasswordType,

View File

@@ -6,6 +6,7 @@ from .color import ColorType
from .country import CountryType, Country from .country import CountryType, Country
from .email import EmailType from .email import EmailType
from .ip_address import IPAddressType from .ip_address import IPAddressType
from .json import JSONType
from .locale import LocaleType from .locale import LocaleType
from .number_range import ( from .number_range import (
NumberRangeRawType, NumberRangeRawType,
@@ -30,6 +31,7 @@ __all__ = (
Country, Country,
EmailType, EmailType,
IPAddressType, IPAddressType,
JSONType,
LocaleType, LocaleType,
NumberRangeRawType, NumberRangeRawType,
NumberRangeType, NumberRangeType,