aboutsummaryrefslogtreecommitdiff
path: root/app/backends/qwen.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-28 02:27:10 -0400
committerhistoria <historiavg@proton.me>2026-08-28 02:27:10 -0400
commita7c653313d2bb1e185cfbc3f0f52c2fe33218600 (patch)
treef28f57fa5509ddb54176116cc4cc1198d034e9ff /app/backends/qwen.py
parent975053f1789771ba5cb9dbe50ba7fe0aa396f0ab (diff)
downloadtts-audiobook-generator-a7c653313d2bb1e185cfbc3f0f52c2fe33218600.tar.gz
feat: qwen-tts backend widgets updated to same style as audio.cpp
Diffstat (limited to 'app/backends/qwen.py')
-rw-r--r--app/backends/qwen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/backends/qwen.py b/app/backends/qwen.py
index 2cd164f..d6dd2e0 100644
--- a/app/backends/qwen.py
+++ b/app/backends/qwen.py
@@ -499,7 +499,7 @@ def models_screen(stdscr) -> int:
while True:
present = installed_models()
rows = [(name, "installed", "ok") if name in present
- else ("not installed", "warn") for name in MODEL_REPOS]
+ else (name, "not installed", "warn") for name in MODEL_REPOS]
options = []
for name in MODEL_REPOS:
if name in present: