summaryrefslogtreecommitdiff
path: root/jsonschema/__init__.py
diff options
context:
space:
mode:
authorColin Dunklau <colin.dunklau@gmail.com>2013-05-12 20:38:58 -0500
committerColin Dunklau <colin.dunklau@gmail.com>2013-05-12 20:38:58 -0500
commit8f6ed86bb51f86205eccbb17855c2117a9011013 (patch)
tree64c9952f712628798a53d2bb077c417ca00da093 /jsonschema/__init__.py
parented11586f4cc62fc9b48a0d1b328be489effabd0b (diff)
downloadjsonschema-8f6ed86bb51f86205eccbb17855c2117a9011013.tar.gz
Cleanup tests a bit.
Removed doctest attempt for module. Renamed tests.py -> test_jsonschema.py
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r--jsonschema/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py
index d66af99..68d140e 100644
--- a/jsonschema/__init__.py
+++ b/jsonschema/__init__.py
@@ -11,11 +11,11 @@ instance under a schema, and will create a validator for you.
__version__ = "1.4.0-dev"
-from jsonschema._format import (
+from jsonschema._format import ( # noqa
FormatChecker, FormatError, draft3_format_checker, draft4_format_checker,
)
-from jsonschema.validators import (
- RefResolutionError, SchemaError, ValidationError, UnknownType,
+from jsonschema.validators import ( # noqa
+ RefResolutionError, SchemaError, ValidationError, UnknownType,
ErrorTree, Draft3Validator, Draft4Validator, RefResolver, ValidatorMixin,
validate, validates,
)