@@ -88,30 +88,30 @@ class ImageMatchSettings(object):
8888 """
8989
9090 match_level = attr .ib (
91- default = MatchLevel .STRICT , metadata = {JsonInclude .NON_NONE : True }
91+ default = MatchLevel .STRICT , metadata = {JsonInclude .THIS : True }
9292 ) # type: MatchLevel
9393 exact = attr .ib (
94- default = None , type = ExactMatchSettings , metadata = {JsonInclude .NON_NONE : True }
94+ default = None , type = ExactMatchSettings , metadata = {JsonInclude .THIS : True }
9595 ) # type: Optional[ExactMatchSettings]
96- ignore_caret = attr .ib (default = None , metadata = {JsonInclude .NON_NONE : True })
97- send_dom = attr .ib (default = False , metadata = {JsonInclude .NON_NONE : True })
98- use_dom = attr .ib (default = False , metadata = {JsonInclude .NON_NONE : True })
99- enable_patterns = attr .ib (default = False , metadata = {JsonInclude .NON_NONE : True })
96+ ignore_caret = attr .ib (default = False , metadata = {JsonInclude .THIS : True })
97+ send_dom = attr .ib (default = False , metadata = {JsonInclude .THIS : True })
98+ use_dom = attr .ib (default = False , metadata = {JsonInclude .THIS : True })
99+ enable_patterns = attr .ib (default = False , metadata = {JsonInclude .THIS : True })
100100
101101 ignore = attr .ib (
102- factory = list , type = typing .List [Region ], metadata = {JsonInclude .NON_NONE : True }
102+ factory = list , type = typing .List [Region ], metadata = {JsonInclude .THIS : True }
103103 )
104104 layout = attr .ib (
105- factory = list , type = typing .List [Region ], metadata = {JsonInclude .NON_NONE : True }
105+ factory = list , type = typing .List [Region ], metadata = {JsonInclude .THIS : True }
106106 )
107107 strict = attr .ib (
108- factory = list , type = typing .List [Region ], metadata = {JsonInclude .NON_NONE : True }
108+ factory = list , type = typing .List [Region ], metadata = {JsonInclude .THIS : True }
109109 )
110110 content = attr .ib (
111- factory = list , type = typing .List [Region ], metadata = {JsonInclude .NON_NONE : True }
111+ factory = list , type = typing .List [Region ], metadata = {JsonInclude .THIS : True }
112112 )
113113 floating = attr .ib (
114- factory = list , type = typing .List [Region ], metadata = {JsonInclude .NON_NONE : True }
114+ factory = list , type = typing .List [Region ], metadata = {JsonInclude .THIS : True }
115115 )
116116
117117
0 commit comments