@@ -143,41 +143,31 @@ def manifest_with_multiple_url_base() -> Dict[str, Any]:
143143 "type" : "object" ,
144144 "$schema" : "http://json-schema.org/draft-07/schema#" ,
145145 "additionalProperties" : True ,
146- "properties" : {
147- "a" : 1
148- },
146+ "properties" : {"a" : 1 },
149147 },
150148 "B" : {
151149 "type" : "object" ,
152150 "$schema" : "http://json-schema.org/draft-07/schema#" ,
153151 "additionalProperties" : True ,
154- "properties" : {
155- "b" : 2
156- },
152+ "properties" : {"b" : 2 },
157153 },
158154 "C" : {
159155 "type" : "object" ,
160156 "$schema" : "http://json-schema.org/draft-07/schema#" ,
161157 "additionalProperties" : True ,
162- "properties" : {
163- "c" : 3
164- },
158+ "properties" : {"c" : 3 },
165159 },
166160 "D" : {
167161 "type" : "object" ,
168162 "$schema" : "http://json-schema.org/draft-07/schema#" ,
169163 "additionalProperties" : True ,
170- "properties" : {
171- "d" : 4
172- },
164+ "properties" : {"d" : 4 },
173165 },
174166 "E" : {
175167 "type" : "object" ,
176168 "$schema" : "http://json-schema.org/draft-07/schema#" ,
177169 "additionalProperties" : True ,
178- "properties" : {
179- "e" : 5
180- },
170+ "properties" : {"e" : 5 },
181171 },
182172 },
183173 }
@@ -212,9 +202,7 @@ def expected_manifest_with_multiple_url_base_normalized() -> Dict[str, Any]:
212202 "type" : "object" ,
213203 "$schema" : "http://json-schema.org/draft-07/schema#" ,
214204 "additionalProperties" : True ,
215- "properties" : {
216- "a" : 1
217- },
205+ "properties" : {"a" : 1 },
218206 },
219207 },
220208 },
@@ -241,9 +229,7 @@ def expected_manifest_with_multiple_url_base_normalized() -> Dict[str, Any]:
241229 "type" : "object" ,
242230 "$schema" : "http://json-schema.org/draft-07/schema#" ,
243231 "additionalProperties" : True ,
244- "properties" : {
245- "b" : 2
246- },
232+ "properties" : {"b" : 2 },
247233 },
248234 },
249235 },
@@ -270,9 +256,7 @@ def expected_manifest_with_multiple_url_base_normalized() -> Dict[str, Any]:
270256 "type" : "object" ,
271257 "$schema" : "http://json-schema.org/draft-07/schema#" ,
272258 "additionalProperties" : True ,
273- "properties" : {
274- "c" : 3
275- },
259+ "properties" : {"c" : 3 },
276260 },
277261 },
278262 },
@@ -299,9 +283,7 @@ def expected_manifest_with_multiple_url_base_normalized() -> Dict[str, Any]:
299283 "type" : "object" ,
300284 "$schema" : "http://json-schema.org/draft-07/schema#" ,
301285 "additionalProperties" : True ,
302- "properties" : {
303- "d" : 4
304- },
286+ "properties" : {"d" : 4 },
305287 },
306288 },
307289 },
@@ -328,10 +310,8 @@ def expected_manifest_with_multiple_url_base_normalized() -> Dict[str, Any]:
328310 "type" : "object" ,
329311 "$schema" : "http://json-schema.org/draft-07/schema#" ,
330312 "additionalProperties" : True ,
331- "properties" : {
332- "e" : 5
333- }
334- }
313+ "properties" : {"e" : 5 },
314+ },
335315 },
336316 },
337317 ],
0 commit comments