aboutsummaryrefslogtreecommitdiff
path: root/app/converter/clients/__init__.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-28 14:57:48 -0400
committerhistoria <historiavg@proton.me>2026-08-28 14:57:48 -0400
commitdb38085d07ce75f8961eecdc1919e98748254c53 (patch)
treebeaea2ba84de05bfc2fa90e9b92a24568d3b4cb9 /app/converter/clients/__init__.py
parentafb2c2d5b297c5aa28bcced0e3f90e207d799c2a (diff)
downloadtts-audiobook-generator-db38085d07ce75f8961eecdc1919e98748254c53.tar.gz
refactor: overhaul config.py, remove cli default options
Diffstat (limited to 'app/converter/clients/__init__.py')
-rw-r--r--app/converter/clients/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/converter/clients/__init__.py b/app/converter/clients/__init__.py
index d02fd9f..16fc99c 100644
--- a/app/converter/clients/__init__.py
+++ b/app/converter/clients/__init__.py
@@ -19,7 +19,7 @@ from .base import BaseTTSClient, ConversionCancelled, VOICE_MODE_CLONE, \
from .languages import LANGUAGE_CHOICES, LANGUAGE_ISO_CODES, TTS_LANGUAGES, \
TTS_LANGUAGE_ALIASES, normalize_language
from .speakers import QWEN3_TTS_SPEAKERS, SPEAKER_DISPLAY_NAMES, \
- is_builtin_speaker, speaker_display_name, speaker_display_name_for
+ is_builtin_speaker, speaker_display_name_for
from .transcribe import (transcribe_reference_audio,
transcribe_reference_audio_detailed,
whisper_backend_available, whisper_backend_problem)
@@ -57,7 +57,7 @@ __all__ = [
"LANGUAGE_CHOICES", "normalize_language",
# speakers
"QWEN3_TTS_SPEAKERS", "SPEAKER_DISPLAY_NAMES",
- "speaker_display_name", "speaker_display_name_for", "is_builtin_speaker",
+ "speaker_display_name_for", "is_builtin_speaker",
# transcription
"transcribe_reference_audio", "transcribe_reference_audio_detailed",
"whisper_backend_available", "whisper_backend_problem",