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):
106
106
107
107
108
108
__all__ = [
109
- "Draft201909Validator" ,
110
- "Draft202012Validator" ,
111
109
"Draft3Validator" ,
112
110
"Draft4Validator" ,
113
111
"Draft6Validator" ,
114
112
"Draft7Validator" ,
113
+ "Draft201909Validator" ,
114
+ "Draft202012Validator" ,
115
115
"FormatChecker" ,
116
116
"SchemaError" ,
117
117
"TypeChecker" ,
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ def remove(self, *types) -> TypeChecker:
196
196
"integer" ,
197
197
lambda checker , instance : (
198
198
is_integer (checker , instance )
199
- or isinstance (instance , float ) and instance .is_integer ()
199
+ or ( isinstance (instance , float ) and instance .is_integer () )
200
200
),
201
201
)
202
202
draft7_type_checker = draft6_type_checker
You can’t perform that action at this time.
0 commit comments