From 410c390cf0c170ab0efcf04c665f4e71ff287d1b Mon Sep 17 00:00:00 2001 From: CI Bot Date: Mon, 7 Sep 2026 14:03:49 +0000 Subject: [PATCH] style: auto-format with black + isort + prettier [skip ci-format-check] --- apps/worker/video_processing/dedup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/worker/video_processing/dedup.py b/apps/worker/video_processing/dedup.py index 25e090292..cd5011f8b 100755 --- a/apps/worker/video_processing/dedup.py +++ b/apps/worker/video_processing/dedup.py @@ -1257,8 +1257,6 @@ class VideoDeduplicator: } - - # ── 文案 & 结构维度查重(Issue #P2-后端3) ──────────────────────── @@ -1362,6 +1360,7 @@ def compute_structure_similarity(clips1: list[dict], clips2: list[dict]) -> floa # 三维度加权:数量 0.3 + 类型 0.4 + 时长 0.3 return count_sim * 0.3 + type_sim * 0.4 + duration_sim * 0.3 + def _save_fingerprint_chunks( fingerprint: VideoFingerprint, video_id: str,