From f48a567873bd9982e254db73bb6cfbbffde990c2 Mon Sep 17 00:00:00 2001 From: Mike Seese Date: Sat, 17 Jan 2026 10:30:47 -0800 Subject: [PATCH] run the linter --- src/pipecat/services/hathora/stt.py | 3 ++- src/pipecat/services/hathora/tts.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pipecat/services/hathora/stt.py b/src/pipecat/services/hathora/stt.py index b9de7ac8d..8aadb6b65 100644 --- a/src/pipecat/services/hathora/stt.py +++ b/src/pipecat/services/hathora/stt.py @@ -123,7 +123,8 @@ class HathoraSTTService(SegmentedSTTService): payload["language"] = self._settings["language"] if self._settings["config"] is not None: payload["model_config"] = [ - {"name": option.name, "value": option.value} for option in self._settings["config"] + {"name": option.name, "value": option.value} + for option in self._settings["config"] ] base64_audio = base64.b64encode(audio).decode("utf-8") diff --git a/src/pipecat/services/hathora/tts.py b/src/pipecat/services/hathora/tts.py index 43c1cfeca..e59c4ad46 100644 --- a/src/pipecat/services/hathora/tts.py +++ b/src/pipecat/services/hathora/tts.py @@ -138,7 +138,8 @@ class HathoraTTSService(TTSService): payload["speed"] = self._settings["speed"] if self._settings["config"] is not None: payload["model_config"] = [ - {"name": option.name, "value": option.value} for option in self._settings["config"] + {"name": option.name, "value": option.value} + for option in self._settings["config"] ] yield TTSStartedFrame()