From 4d3c89a8f66705ba2f9e13ea07d15cfaf71d8564 Mon Sep 17 00:00:00 2001 From: empty Date: Tue, 6 Jan 2026 23:54:35 +0800 Subject: [PATCH] fix: Await async extract_style_anchor call --- api/routers/quality.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routers/quality.py b/api/routers/quality.py index 6dc5e5f..6012179 100644 --- a/api/routers/quality.py +++ b/api/routers/quality.py @@ -256,7 +256,7 @@ async def extract_style( from pixelle_video.services.quality.style_guard import StyleGuard style_guard = StyleGuard() - anchor = style_guard.extract_style_anchor(actual_path) + anchor = await style_guard.extract_style_anchor(actual_path) style_schema = StyleAnchorSchema( color_palette=anchor.color_palette,