@@ -71,7 +71,7 @@ class SchemaValidator:
71
71
* ,
72
72
strict : bool | None = None ,
73
73
from_attributes : bool | None = None ,
74
- context : Any = None ,
74
+ context : 'dict[str, Any] | None' = None ,
75
75
self_instance : Any | None = None ,
76
76
) -> Any : ...
77
77
def isinstance_python (
@@ -80,15 +80,15 @@ class SchemaValidator:
80
80
* ,
81
81
strict : bool | None = None ,
82
82
from_attributes : bool | None = None ,
83
- context : Any = None ,
83
+ context : 'dict[str, Any] | None' = None ,
84
84
self_instance : Any | None = None ,
85
85
) -> bool : ...
86
86
def validate_json (
87
87
self ,
88
88
input : str | bytes | bytearray ,
89
89
* ,
90
90
strict : bool | None = None ,
91
- context : Any = None ,
91
+ context : 'dict[str, Any] | None' = None ,
92
92
self_instance : Any | None = None ,
93
93
) -> Any : ...
94
94
def validate_assignment (
@@ -99,7 +99,7 @@ class SchemaValidator:
99
99
* ,
100
100
strict : bool | None = None ,
101
101
from_attributes : bool | None = None ,
102
- context : Any = None ,
102
+ context : 'dict[str, Any] | None' = None ,
103
103
) -> dict [str , Any ]: ...
104
104
def get_default_value (self , * , strict : bool | None = None , context : Any = None ) -> Some | None : ...
105
105
0 commit comments