Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightriff committed Jan 21, 2025
1 parent b841565 commit c51ecd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/upload_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ def upload(cls, window_manager, area, scene, view_layer, preferences, target_obj

add_on_preferences = get_add_on_preferences(preferences)
temporary_directory = TemporaryDirectory()
sanitized_object_name = "".join(c for c in target_object.name if c.isalnum() or c in (' ','.','_')).rstrip()
sanitized_object_name = "".join(
c for c in target_object.name if c.isalnum() or c in (" ", ".", "_")
).rstrip()
exported_file_path = Path(temporary_directory.name) / f"exported_{sanitized_object_name}.fbx"
from .export_fbx import export_fbx

Expand Down

0 comments on commit c51ecd1

Please sign in to comment.