@@ -290,7 +290,9 @@ def texture_coordinates():
290290 utils_functions .validate_request (flask .request , texture_coordinates_json )
291291 data = geode_functions .load (
292292 flask .request .json ["input_geode_object" ],
293- os .path .join (DATA_FOLDER_PATH , flask .request .json ["id" ], flask .request .json ["filename" ]),
293+ os .path .join (
294+ DATA_FOLDER_PATH , flask .request .json ["id" ], flask .request .json ["filename" ]
295+ ),
294296 )
295297 texture_coordinates = data .texture_manager ().texture_names ()
296298
@@ -312,7 +314,9 @@ def vertex_attribute_names():
312314 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
313315 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
314316 file_absolute_path = os .path .join (
315- DATA_FOLDER_PATH , flask .request .json ["id" ], werkzeug .utils .secure_filename (flask .request .json ["filename" ])
317+ DATA_FOLDER_PATH ,
318+ flask .request .json ["id" ],
319+ werkzeug .utils .secure_filename (flask .request .json ["filename" ]),
316320 )
317321 data = geode_functions .load (
318322 flask .request .json ["input_geode_object" ], file_absolute_path
@@ -342,7 +346,9 @@ def polygon_attribute_names():
342346 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
343347 utils_functions .validate_request (flask .request , polygon_attribute_names_json )
344348 file_absolute_path = os .path .join (
345- DATA_FOLDER_PATH , flask .request .json ["id" ], werkzeug .utils .secure_filename (flask .request .json ["filename" ])
349+ DATA_FOLDER_PATH ,
350+ flask .request .json ["id" ],
351+ werkzeug .utils .secure_filename (flask .request .json ["filename" ]),
346352 )
347353 data = geode_functions .load (
348354 flask .request .json ["input_geode_object" ], file_absolute_path
@@ -372,7 +378,9 @@ def polyhedron_attribute_names():
372378 DATA_FOLDER_PATH = flask .current_app .config ["DATA_FOLDER_PATH" ]
373379 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
374380 file_absolute_path = os .path .join (
375- DATA_FOLDER_PATH , flask .request .json ["id" ], werkzeug .utils .secure_filename (flask .request .json ["filename" ])
381+ DATA_FOLDER_PATH ,
382+ flask .request .json ["id" ],
383+ werkzeug .utils .secure_filename (flask .request .json ["filename" ]),
376384 )
377385 data = geode_functions .load (
378386 flask .request .json ["input_geode_object" ], file_absolute_path
0 commit comments