@@ -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 (
@@ -292,10 +295,10 @@ def texture_coordinates():
292295 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
293296 utils_functions .validate_request (flask .request , texture_coordinates_json )
294297 data = geode_functions .load_from_request (
295- flask .request .json ["input_geode_object" ],
296- DATA_FOLDER_PATH ,
297- flask .request .json ,
298- )
298+ flask .request .json ["input_geode_object" ],
299+ DATA_FOLDER_PATH ,
300+ flask .request .json ,
301+ )
299302
300303 texture_coordinates = data .texture_manager ().texture_names ()
301304
@@ -317,9 +320,9 @@ def vertex_attribute_names():
317320 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
318321 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
319322 data = geode_functions .load_from_request (
320- flask .request .json ["input_geode_object" ],
321- DATA_FOLDER_PATH ,
322- flask .request .json ,
323+ flask .request .json ["input_geode_object" ],
324+ DATA_FOLDER_PATH ,
325+ flask .request .json ,
323326 )
324327
325328 vertex_attribute_names = data .vertex_attribute_manager ().attribute_names ()
@@ -347,9 +350,9 @@ def polygon_attribute_names():
347350 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
348351 utils_functions .validate_request (flask .request , polygon_attribute_names_json )
349352 data = geode_functions .load_from_request (
350- flask .request .json ["input_geode_object" ],
351- DATA_FOLDER_PATH ,
352- flask .request .json ,
353+ flask .request .json ["input_geode_object" ],
354+ DATA_FOLDER_PATH ,
355+ flask .request .json ,
353356 )
354357
355358 polygon_attribute_names = data .polygon_attribute_manager ().attribute_names ()
@@ -377,9 +380,9 @@ def polyhedron_attribute_names():
377380 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
378381 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
379382 data = geode_functions .load_from_request (
380- flask .request .json ["input_geode_object" ],
381- DATA_FOLDER_PATH ,
382- flask .request .json ,
383+ flask .request .json ["input_geode_object" ],
384+ DATA_FOLDER_PATH ,
385+ flask .request .json ,
383386 )
384387
385388 polyhedron_attribute_names = data .polyhedron_attribute_manager ().attribute_names ()
0 commit comments