@@ -100,7 +100,8 @@ def allowed_objects():
100100 UPLOAD_FOLDER = flask .current_app .config ["UPLOAD_FOLDER" ]
101101 utils_functions .validate_request (flask .request , allowed_objects_json )
102102 file_absolute_path = geode_functions .build_upload_file_path (
103- UPLOAD_FOLDER , flask .request .json ["filename" ])
103+ UPLOAD_FOLDER , flask .request .json ["filename" ]
104+ )
104105 allowed_objects = geode_functions .list_geode_objects (
105106 file_absolute_path , flask .request .json ["supported_feature" ]
106107 )
@@ -125,7 +126,8 @@ def missing_files():
125126 missing_files = geode_functions .missing_files (
126127 flask .request .json ["input_geode_object" ],
127128 geode_functions .build_upload_file_path (
128- UPLOAD_FOLDER , flask .request .json ["filename" ]),
129+ UPLOAD_FOLDER , flask .request .json ["filename" ]
130+ ),
129131 )
130132 has_missing_files = missing_files .has_missing_files ()
131133
@@ -218,7 +220,8 @@ def geode_objects_and_output_extensions():
218220 data = geode_functions .load (
219221 flask .request .json ["input_geode_object" ],
220222 geode_functions .build_upload_file_path (
221- UPLOAD_FOLDER , flask .request .json ["filename" ]),
223+ UPLOAD_FOLDER , flask .request .json ["filename" ]
224+ ),
222225 )
223226 geode_objects_and_output_extensions = (
224227 geode_functions .geode_objects_output_extensions (
@@ -291,10 +294,10 @@ def create_point():
291294def texture_coordinates ():
292295 utils_functions .validate_request (flask .request , texture_coordinates_json )
293296 data = geode_functions .load_from_request (
294- flask .request .json ["input_geode_object" ],
295- DATA_FOLDER_PATH ,
296- flask .request .json ,
297- )
297+ flask .request .json ["input_geode_object" ],
298+ DATA_FOLDER_PATH ,
299+ flask .request .json ,
300+ )
298301
299302 texture_coordinates = data .texture_manager ().texture_names ()
300303
@@ -315,9 +318,9 @@ def texture_coordinates():
315318def vertex_attribute_names ():
316319 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
317320 data = geode_functions .load_from_request (
318- flask .request .json ["input_geode_object" ],
319- DATA_FOLDER_PATH ,
320- flask .request .json ,
321+ flask .request .json ["input_geode_object" ],
322+ DATA_FOLDER_PATH ,
323+ flask .request .json ,
321324 )
322325
323326 vertex_attribute_names = data .vertex_attribute_manager ().attribute_names ()
@@ -344,9 +347,9 @@ def vertex_attribute_names():
344347def polygon_attribute_names ():
345348 utils_functions .validate_request (flask .request , polygon_attribute_names_json )
346349 data = geode_functions .load_from_request (
347- flask .request .json ["input_geode_object" ],
348- DATA_FOLDER_PATH ,
349- flask .request .json ,
350+ flask .request .json ["input_geode_object" ],
351+ DATA_FOLDER_PATH ,
352+ flask .request .json ,
350353 )
351354
352355 polygon_attribute_names = data .polygon_attribute_manager ().attribute_names ()
@@ -373,9 +376,9 @@ def polygon_attribute_names():
373376def polyhedron_attribute_names ():
374377 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
375378 data = geode_functions .load_from_request (
376- flask .request .json ["input_geode_object" ],
377- DATA_FOLDER_PATH ,
378- flask .request .json ,
379+ flask .request .json ["input_geode_object" ],
380+ DATA_FOLDER_PATH ,
381+ flask .request .json ,
379382 )
380383
381384 polyhedron_attribute_names = data .polyhedron_attribute_manager ().attribute_names ()
0 commit comments