@@ -201,10 +201,14 @@ def test_vertex_attribute_names(client, test_id):
201201 elements = geode_functions .get_elements (geode_object )
202202 if "points" in elements :
203203 for input_extension in input_extensions :
204- if geode_functions .is_loadable (
205- geode_object ,
206- os .path .join ("./data" , f"test.{ input_extension } " ),
207- ) > 0.0 :
204+ if (
205+ geode_functions .is_loadable (
206+ geode_object ,
207+ os .path .join ("./data" , f"test.{ input_extension } " ),
208+ )
209+ > 0.0
210+ ):
211+
208212 def get_full_data ():
209213 return {
210214 "input_geode_object" : geode_object ,
@@ -236,10 +240,14 @@ def test_polygon_attribute_names(client, test_id):
236240 elements = geode_functions .get_elements (geode_object )
237241 if "polygons" in elements :
238242 for input_extension in input_extensions :
239- if geode_functions .is_loadable (
240- geode_object ,
241- os .path .join ("./data" , f"test.{ input_extension } " ),
242- ) > 0.0 :
243+ if (
244+ geode_functions .is_loadable (
245+ geode_object ,
246+ os .path .join ("./data" , f"test.{ input_extension } " ),
247+ )
248+ > 0.0
249+ ):
250+
243251 def get_full_data ():
244252 return {
245253 "input_geode_object" : geode_object ,
@@ -271,10 +279,14 @@ def test_polyhedron_attribute_names(client, test_id):
271279 elements = geode_functions .get_elements (geode_object )
272280 if "polyhedrons" in elements :
273281 for input_extension in input_extensions :
274- if geode_functions .is_loadable (
275- geode_object ,
276- os .path .join ("./data" , f"test.{ input_extension } " ),
277- ) > 0.0 :
282+ if (
283+ geode_functions .is_loadable (
284+ geode_object ,
285+ os .path .join ("./data" , f"test.{ input_extension } " ),
286+ )
287+ > 0.0
288+ ):
289+
278290 def get_full_data ():
279291 return {
280292 "input_geode_object" : geode_object ,
0 commit comments