diff options
author | Julian Berman <Julian@GrayVines.com> | 2013-05-12 23:40:56 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2013-05-12 23:40:56 -0400 |
commit | 6e66bda1838bc1723fc3232839c0d799cb06dde6 (patch) | |
tree | ddbf3f835a3a9651c8adb1f6539e1d4030a3317b /jsonschema/__init__.py | |
parent | f5c0e3b4a2a8d9d1c4c88000f98a1a5d029acc44 (diff) | |
download | jsonschema-6e66bda1838bc1723fc3232839c0d799cb06dde6.tar.gz |
Global flake8 ignore
Diffstat (limited to 'jsonschema/__init__.py')
-rw-r--r-- | jsonschema/__init__.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py index 68d140e..adf9e2d 100644 --- a/jsonschema/__init__.py +++ b/jsonschema/__init__.py @@ -9,13 +9,17 @@ instance under a schema, and will create a validator for you. """ -__version__ = "1.4.0-dev" - -from jsonschema._format import ( # noqa +from jsonschema._format import ( FormatChecker, FormatError, draft3_format_checker, draft4_format_checker, ) -from jsonschema.validators import ( # noqa +from jsonschema.validators import ( RefResolutionError, SchemaError, ValidationError, UnknownType, ErrorTree, Draft3Validator, Draft4Validator, RefResolver, ValidatorMixin, validate, validates, ) + + +__version__ = "1.4.0-dev" + + +# flake8: noqa |