From b53132f3a4567220f26ca81cc5ec41a98049c2f8 Mon Sep 17 00:00:00 2001 From: AiC <139749827+aic1x@users.noreply.github.com> Date: Tue, 4 Nov 2025 21:16:26 +0100 Subject: [PATCH] Fix typo in source_target_map variable name --- modules/globals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/globals.py b/modules/globals.py index aad50f0..e5cb673 100644 --- a/modules/globals.py +++ b/modules/globals.py @@ -12,7 +12,7 @@ file_types = [ ] # Face Mapping Data -souce_target_map: List[Dict[str, Any]] = [] # Stores detailed map for image/video processing +source_target_map: List[Dict[str, Any]] = [] # Stores detailed map for image/video processing simple_map: Dict[str, Any] = {} # Stores simplified map (embeddings/faces) for live/simple mode # Paths @@ -68,4 +68,4 @@ enable_interpolation: bool = True # Toggle temporal smoothing interpolation_weight: float = 0 # Blend weight for current frame (0.0-1.0). Lower=smoother. # --- END: Added for Frame Interpolation --- -# --- END OF FILE globals.py --- \ No newline at end of file +# --- END OF FILE globals.py ---