Skip to content

Commit 7d3c06f

Browse files
committed
style: final manual fix for import grouping and hierarchical logging
Signed-off-by: Akshat Kumar <akshat230405@gmail.com>
1 parent cd2c510 commit 7d3c06f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/unittests/agents/test_llm_agent_fields.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
from typing import Optional
2020
from unittest import mock
2121

22+
from pydantic import BaseModel
23+
import pytest
24+
2225
from google.adk.agents.callback_context import CallbackContext
2326
from google.adk.agents.invocation_context import InvocationContext
2427
from google.adk.agents.llm_agent import LlmAgent
@@ -30,12 +33,10 @@
3033
from google.adk.models.registry import LLMRegistry
3134
from google.adk.planners.built_in_planner import BuiltInPlanner
3235
from google.adk.sessions.in_memory_session_service import InMemorySessionService
33-
from google.adk.tools.google_search_tool import google_search
3436
from google.adk.tools.google_search_tool import GoogleSearchTool
37+
from google.adk.tools.google_search_tool import google_search
3538
from google.adk.tools.vertex_ai_search_tool import VertexAiSearchTool
3639
from google.genai import types
37-
from pydantic import BaseModel
38-
import pytest
3940

4041

4142
async def _create_readonly_context(

0 commit comments

Comments
 (0)