run the linter

This commit is contained in:
Mike Seese
2026-01-17 10:30:47 -08:00
parent 2249f3d673
commit f48a567873
2 changed files with 4 additions and 2 deletions

View File

@@ -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")

View File

@@ -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()