Compare commits

..

2 Commits

Author SHA1 Message Date
rehanbgmi 25385cea04
Merge 6da790e3d2 into ec6d7d2995 2025-06-01 18:12:32 +05:30
google-labs-jules[bot] 6da790e3d2 fix: Correct IndentationError in face_swapper.py
Addresses an IndentationError at the definition of the
_blend_material_onto_frame helper function in
modules/processors/frame/face_swapper.py.

The fix ensures that the function definition line starts at
column 0 (no leading whitespace) and that the preceding
function's structure does not cause misinterpretation by the
Python parser. Duplicated/malformed definitions of related
helper functions were also confirmed to be removed in prior steps.

This resolves a syntax error that prevented your application from
starting.
2025-06-01 08:52:37 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ def _blend_material_onto_frame(
return warped_full_source_material, warped_combined_mask_binary_for_clone
# Ensure one blank line and correct indentation for the next function definition
def _blend_material_onto_frame(
base_frame: Frame,
material_to_blend: Frame,