Skip to content

Commit 1667fcd

Browse files
committed
uv run ruff format
1 parent c14fd00 commit 1667fcd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/realtime/twilio_sip/server.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ async def observe_call(call_id: str) -> None:
144144
logger.info("Caller: %s", user_content.text)
145145
elif isinstance(item, AssistantMessageItem):
146146
for assistant_content in item.content:
147-
if isinstance(assistant_content, AssistantText) and assistant_content.text:
147+
if (
148+
isinstance(assistant_content, AssistantText)
149+
and assistant_content.text
150+
):
148151
logger.info("Assistant (text): %s", assistant_content.text)
149152
elif (
150153
isinstance(assistant_content, AssistantAudio)

0 commit comments

Comments
 (0)