File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,12 @@ def __getattr__(name):
106106
107107
108108__all__ = [
109- "Draft201909Validator" ,
110- "Draft202012Validator" ,
111109 "Draft3Validator" ,
112110 "Draft4Validator" ,
113111 "Draft6Validator" ,
114112 "Draft7Validator" ,
113+ "Draft201909Validator" ,
114+ "Draft202012Validator" ,
115115 "FormatChecker" ,
116116 "SchemaError" ,
117117 "TypeChecker" ,
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ def remove(self, *types) -> TypeChecker:
196196 "integer" ,
197197 lambda checker , instance : (
198198 is_integer (checker , instance )
199- or isinstance (instance , float ) and instance .is_integer ()
199+ or ( isinstance (instance , float ) and instance .is_integer () )
200200 ),
201201)
202202draft7_type_checker = draft6_type_checker
You can’t perform that action at this time.
0 commit comments