From cc3e99c6a40b4c83fde32f423aad48fc85d87a64 Mon Sep 17 00:00:00 2001 From: Anubhav Dhawan Date: Thu, 5 Feb 2026 18:57:01 +0530 Subject: [PATCH] chore: Delint --- .../quickstart/python/adk/quickstart.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/getting-started/quickstart/python/adk/quickstart.py b/docs/en/getting-started/quickstart/python/adk/quickstart.py index 2d28f5122d..fdd1292630 100644 --- a/docs/en/getting-started/quickstart/python/adk/quickstart.py +++ b/docs/en/getting-started/quickstart/python/adk/quickstart.py @@ -7,13 +7,13 @@ from google.adk.tools.toolbox_toolset import ToolboxToolset from google.genai.types import Content, Part prompt = """ - You're a helpful hotel assistant. You handle hotel searching, booking and - cancellations. When the user searches for a hotel, mention it's name, id, - location and price tier. Always mention hotel ids while performing any - searches. This is very important for any operations. For any bookings or - cancellations, please provide the appropriate confirmation. Be sure to - update checkin or checkout dates if mentioned by the user. - Don't ask for confirmations from the user. +You're a helpful hotel assistant. You handle hotel searching, booking and +cancellations. When the user searches for a hotel, mention it's name, id, +location and price tier. Always mention hotel ids while performing any +searches. This is very important for any operations. For any bookings or +cancellations, please provide the appropriate confirmation. Be sure to +update checkin or checkout dates if mentioned by the user. +Don't ask for confirmations from the user. """ queries = [ @@ -46,7 +46,7 @@ async def main(): for query in queries: print(f"\nUser: {query}") user_message = Content(parts=[Part.from_text(text=query)]) - + async for event in runner.run_async(session_id=session.id, new_message=user_message): if event.is_final_response(): print(f"Agent: {event.content.parts[0].text}")