diff options
author | Julian Berman <Julian@GrayVines.com> | 2022-08-19 18:48:07 +0300 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2022-08-29 12:23:07 +0300 |
commit | bde874d31c8aa2db5123f11ac919742ba7b1d741 (patch) | |
tree | 718c4873ff780267871b5a7ee1ed2dd771e54685 /jsonschema | |
parent | 4320a2cb4f0117ddd4d987e8f3d0a60e4e81da21 (diff) | |
download | jsonschema-bde874d31c8aa2db5123f11ac919742ba7b1d741.tar.gz |
Wouldn't be complete without refs which fail now only in ReadTheDocs. :/
Diffstat (limited to 'jsonschema')
-rw-r--r-- | jsonschema/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jsonschema/__init__.py b/jsonschema/__init__.py index 75f2946..7e3b91e 100644 --- a/jsonschema/__init__.py +++ b/jsonschema/__init__.py @@ -4,8 +4,9 @@ An implementation of JSON Schema for Python The main functionality is provided by the validator classes for each of the supported JSON Schema versions. -Most commonly, `validate` is the quickest way to simply validate a given -instance under a schema, and will create a validator for you. +Most commonly, `jsonschema.validators.validate` is the quickest way to simply +validate a given instance under a schema, and will create a validator +for you. """ import warnings |