Skip to content

Commit 34c8cc7

Browse files
committed
Fix RefResolver store parameter type in jsonschema stubs
1 parent 81a6d24 commit 34c8cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/jsonschema/jsonschema/validators.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class RefResolver:
105105
self,
106106
base_uri: str,
107107
referrer: dict[str, Incomplete],
108-
store: SupportsKeysAndGetItem[str, str] | Iterable[tuple[str, str]] = ...,
108+
store: SupportsKeysAndGetItem[str, Mapping[str, Any]] | Iterable[tuple[str, Mapping[str, Any]]] = ...,
109109
cache_remote: bool = True,
110110
handlers: SupportsKeysAndGetItem[str, _Handler] | Iterable[tuple[str, _Handler]] = (),
111111
urljoin_cache=None,

0 commit comments

Comments
 (0)