@@ -1093,7 +1093,7 @@ def __init__(
10931093 self ,
10941094 schema : Schemable ,
10951095 msg : typing .Optional [str ] = None ,
1096- default = UNDEFINED ,
1096+ default : typing . Any = UNDEFINED ,
10971097 description : typing .Optional [str ] = None ,
10981098 ) -> None :
10991099 super (Optional , self ).__init__ (schema , msg = msg , description = description )
@@ -1195,7 +1195,7 @@ def __init__(
11951195 group_of_inclusion : str ,
11961196 msg : typing .Optional [str ] = None ,
11971197 description : typing .Optional [str ] = None ,
1198- default = UNDEFINED ,
1198+ default : typing . Any = UNDEFINED ,
11991199 ) -> None :
12001200 super (Inclusive , self ).__init__ (
12011201 schema , msg = msg , default = default , description = description
@@ -1222,7 +1222,7 @@ def __init__(
12221222 self ,
12231223 schema : Schemable ,
12241224 msg : typing .Optional [str ] = None ,
1225- default = UNDEFINED ,
1225+ default : typing . Any = UNDEFINED ,
12261226 description : typing .Optional [str ] = None ,
12271227 ) -> None :
12281228 super (Required , self ).__init__ (schema , msg = msg , description = description )
0 commit comments