summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r--jsonschema/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index 34ca151..bd2077d 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -10,13 +10,13 @@ instance under a schema, and will create a validator for you.
"""
from jsonschema.exceptions import (
- FormatError, RefResolutionError, SchemaError, ValidationError
+ ErrorTree, FormatError, RefResolutionError, SchemaError, ValidationError
)
from jsonschema._format import (
FormatChecker, draft3_format_checker, draft4_format_checker,
)
from jsonschema.validators import (
- ErrorTree, Draft3Validator, Draft4Validator, RefResolver, validate
+ Draft3Validator, Draft4Validator, RefResolver, validate
)