@@ -53,7 +53,7 @@ class SchemaValidator:
53
53
* ,
54
54
strict : 'bool | None' = None ,
55
55
from_attributes : 'bool | None' = None ,
56
- context : Any = None ,
56
+ context : 'dict[str, Any] | None' = None ,
57
57
self_instance : 'Any | None' = None ,
58
58
) -> Any : ...
59
59
def isinstance_python (
@@ -62,15 +62,15 @@ class SchemaValidator:
62
62
* ,
63
63
strict : 'bool | None' = None ,
64
64
from_attributes : 'bool | None' = None ,
65
- context : Any = None ,
65
+ context : 'dict[str, Any] | None' = None ,
66
66
self_instance : 'Any | None' = None ,
67
67
) -> bool : ...
68
68
def validate_json (
69
69
self ,
70
70
input : 'str | bytes | bytearray' ,
71
71
* ,
72
72
strict : 'bool | None' = None ,
73
- context : Any = None ,
73
+ context : 'dict[str, Any] | None' = None ,
74
74
self_instance : 'Any | None' = None ,
75
75
) -> Any : ...
76
76
def validate_assignment (
@@ -81,9 +81,11 @@ class SchemaValidator:
81
81
* ,
82
82
strict : 'bool | None' = None ,
83
83
from_attributes : 'bool | None' = None ,
84
- context : Any = None ,
84
+ context : 'dict[str, Any] | None' = None ,
85
85
) -> 'dict[str, Any]' : ...
86
- def get_default_value (self , * , strict : 'bool | None' = None , context : Any = None ) -> Some | None : ...
86
+ def get_default_value (
87
+ self , * , strict : 'bool | None' = None , context : 'dict[str, Any] | None' = None
88
+ ) -> Some | None : ...
87
89
88
90
IncEx : TypeAlias = 'set[int] | set[str] | dict[int, IncEx] | dict[str, IncEx] | None'
89
91
0 commit comments