Skip to content

Update jsonschema.protocols.Validator.__init__ #14327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stubs/jsonschema/jsonschema/protocols.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ from collections.abc import Iterator, Mapping, Sequence
from typing import ClassVar, Protocol
from typing_extensions import TypeAlias

import referencing.jsonschema
from jsonschema._format import FormatChecker
from jsonschema._types import TypeChecker
from jsonschema.exceptions import ValidationError
from jsonschema.validators import RefResolver

_JsonParameter: TypeAlias = str | int | float | bool | None | Mapping[str, _JsonParameter] | Sequence[_JsonParameter]

Expand All @@ -19,7 +19,7 @@ class Validator(Protocol):
def __init__(
self,
schema: dict[Incomplete, Incomplete] | bool,
resolver: RefResolver | None = None,
registry: referencing.jsonschema.SchemaRegistry,
format_checker: FormatChecker | None = None,
) -> None: ...
@classmethod
Expand Down