style: Format code for consistency and readability across TTS modules
This commit is contained in:
@@ -18,7 +18,7 @@ class TTSProcessor:
|
||||
|
||||
def __init__(self) -> None:
|
||||
"""Initialize the TTS processor."""
|
||||
self.max_concurrent = getattr(settings, 'TTS_MAX_CONCURRENT', 3)
|
||||
self.max_concurrent = getattr(settings, "TTS_MAX_CONCURRENT", 3)
|
||||
self.running_tts: set[int] = set()
|
||||
self.processing_lock = asyncio.Lock()
|
||||
self.shutdown_event = asyncio.Event()
|
||||
@@ -190,4 +190,4 @@ class TTSProcessor:
|
||||
|
||||
|
||||
# Global TTS processor instance
|
||||
tts_processor = TTSProcessor()
|
||||
tts_processor = TTSProcessor()
|
||||
|
||||
Reference in New Issue
Block a user