@@ -194,11 +194,11 @@ def process_files(self, markup_path: Optional[str] = None, video_path: Optional[
194194 if dest_path .resolve () == src_path .resolve ():
195195 # Already in the output folder; nothing to do
196196 self .logger .debug (
197- "Markup file already located in output directory; skipping move"
197+ "Markup file already located in output directory; skipping move" ,
198198 )
199199 else :
200200 self .logger .debug (
201- "Moving markup JSON '%s' -> '%s'" , src_path , dest_path
201+ "Moving markup JSON '%s' -> '%s'" , src_path , dest_path ,
202202 )
203203 try :
204204 # Attempt an atomic-ish move; fallback to copy+unlink if needed
@@ -208,12 +208,12 @@ def process_files(self, markup_path: Optional[str] = None, video_path: Optional[
208208 shutil .copy2 (src_path , dest_path )
209209 src_path .unlink (missing_ok = True ) # type: ignore[arg-type]
210210 self .logger .info (
211- "Moved markup JSON to output directory: %s" , dest_path
211+ "Moved markup JSON to output directory: %s" , dest_path ,
212212 )
213213 except Exception as move_err :
214214 # Non-fatal: we still succeeded overall.
215215 self .logger .warning (
216- "Failed to move markup JSON to output directory: %s" , move_err
216+ "Failed to move markup JSON to output directory: %s" , move_err ,
217217 )
218218
219219 # Update persistent cache after processing (preserve RIFE loaded state)
0 commit comments