8000 reformat with pyink · google/adk-python@12a5d43 · GitHub
[go: up one dir, main page]

Skip to content

Commit 12a5d43

Browse files
committed
reformat with pyink
1 parent b0fff28 commit 12a5d43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/google/adk/models/lite_llm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,9 @@ async def generate_content_async(
673673
function_calls[index]["name"] += chunk.name
674674
if chunk.args:
675675
function_calls[index]["args"] += chunk.args
676-
function_calls[index]["id"] = chunk.id or function_calls[index]["id"]
676+
function_calls[index]["id"] = (
677+
chunk.id or function_calls[index]["id"]
678+
)
677679
elif isinstance(chunk, TextChunk):
678680
text += chunk.text
679681
yield _message_to_generate_content_response(

0 commit comments

Comments
 (0)
0