From 6cfcd564c0684c52618235e6366f4a81c02b9a5b Mon Sep 17 00:00:00 2001 From: historia Date: Tue, 1 Sep 2026 14:32:05 -0400 Subject: slop refactor/dedup --- app/converter/clients/qwen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/converter/clients/qwen.py') diff --git a/app/converter/clients/qwen.py b/app/converter/clients/qwen.py index 17f14c5..dd1c8ba 100644 --- a/app/converter/clients/qwen.py +++ b/app/converter/clients/qwen.py @@ -33,8 +33,8 @@ class QwenTTSClient(BaseTTSClient): voice_clone_ref_text: Optional[str] = None, skip_transcription: bool = False, language: Optional[str] = None, api_url: Optional[str] = None, instructions: Optional[str] = None, quiet: bool = False, - voice: Optional[str] = None): - super().__init__(chunks_dir, quiet=quiet) + voice: Optional[str] = None, cancel=None): + super().__init__(chunks_dir, quiet=quiet, cancel=cancel) if voice_mode not in VOICE_MODES: raise ValueError( f"Unknown voice mode: {voice_mode!r} (expected one of {VOICE_MODES})" -- cgit v1.2.3