Skip to content

Commit 64a7442

Browse files
committed
More specific type.
1 parent 3b9d58c commit 64a7442

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jsonschema/validators.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727
_validators,
2828
exceptions,
2929
)
30+
from jsonschema.protocols import Validator
3031

3132
_UNSET = _utils.Unset()
3233

33-
_VALIDATORS: dict[str, typing.Any] = {}
34+
_VALIDATORS: dict[str, Validator] = {}
3435
_META_SCHEMAS = _utils.URIDict()
3536
_VOCABULARIES: list[tuple[str, typing.Any]] = []
3637

0 commit comments

Comments
 (0)