summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2017-06-11 10:39:08 -0400
committerJulian Berman <Julian@GrayVines.com>2017-10-29 17:21:53 -0400
commit24d9fd95fdd5f433b92e53d1cf3bcdc98484b885 (patch)
tree69602ec5359470c2e31276457e6640b589e28abe /jsonschema/__init__.py
parentd0381d51c1ba361e675bdf36adb6ea9d62caa06b (diff)
downloadjsonschema-24d9fd95fdd5f433b92e53d1cf3bcdc98484b885.tar.gz
Add all the Draft 6 tests, makin' em fail.
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r--jsonschema/__init__.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index baf1d89..2fc0278 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -13,10 +13,17 @@ from jsonschema.exceptions import (
ErrorTree, FormatError, RefResolutionError, SchemaError, ValidationError
)
from jsonschema._format import (
- FormatChecker, draft3_format_checker, draft4_format_checker,
+ FormatChecker,
+ draft3_format_checker,
+ draft4_format_checker,
+ draft6_format_checker,
)
from jsonschema.validators import (
- Draft3Validator, Draft4Validator, RefResolver, validate
+ Draft3Validator,
+ Draft4Validator,
+ Draft6Validator,
+ RefResolver,
+ validate,
)
from jsonschema._version import __version__