@@ -289,7 +289,9 @@ def _geolayout_to_ghostship_otr(geolayout: geo.Geolayout, folder_path: str):
289289
290290def _geolayout_graph_to_ghostship_otr (geolayout_graph : geo .GeolayoutGraph , folder_path : str ):
291291 geolayout_graph .checkListSorted ()
292- return {geolayout .name : _geolayout_to_ghostship_otr (geolayout , folder_path ) for geolayout in geolayout_graph .sortedList }
292+ return {
293+ geolayout .name : _geolayout_to_ghostship_otr (geolayout , folder_path ) for geolayout in geolayout_graph .sortedList
294+ }
293295
294296
295297def _write_ghostship_resource (export_folder_path : str , name : str , data : bytes ):
@@ -433,12 +435,16 @@ def save_geolayout_ghostship(geo_name, dir_name, geolayout_graph: geo.GeolayoutG
433435 for name , resource_data in _geolayout_graph_to_ghostship_otr (geolayout_graph , folder_path ).items ():
434436 _write_ghostship_resource (export_folder_path , name , resource_data )
435437 if is_mario_root :
436- _write_ghostship_resource (export_folder_path , "mario_geo" , _ghostship_mario_root_geo (folder_path , "mario_geo_render_body" ))
438+ _write_ghostship_resource (
439+ export_folder_path , "mario_geo" , _ghostship_mario_root_geo (folder_path , "mario_geo_render_body" )
440+ )
437441
438442 return export_folder_path
439443
440444
441- def export_geolayout_armature_ghostship (armature_obj , obj , convert_transform_matrix , export_path , dir_name , geo_name , dl_format ):
445+ def export_geolayout_armature_ghostship (
446+ armature_obj , obj , convert_transform_matrix , export_path , dir_name , geo_name , dl_format
447+ ):
442448 from ...sm64 .sm64_geolayout_writer import convertArmatureToGeolayout
443449
444450 geolayout_graph , f_model = convertArmatureToGeolayout (
0 commit comments