Skip to content

Commit bcc35f6

Browse files
Copilotg3force
andcommitted
Remove unused type: ignore comments
- Remove unused type: ignore comments from agent_to_a2a.py lines 108-110 - These were flagged by mypy as unused-ignore when dependencies are installed - All tests still passing (3/3 token tests) - All linters passing (ruff, mypy) Co-authored-by: g3force <779094+g3force@users.noreply.github.com>
1 parent 59df380 commit bcc35f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adk/agenticlayer/agent_to_a2a.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ async def create_runner() -> Runner:
105105
plugins=[CallbackTracerPlugin()],
106106
),
107107
artifact_service=InMemoryArtifactService(),
108-
session_service=InMemorySessionService(), # type: ignore
109-
memory_service=InMemoryMemoryService(), # type: ignore
110-
credential_service=InMemoryCredentialService(), # type: ignore
108+
session_service=InMemorySessionService(),
109+
memory_service=InMemoryMemoryService(),
110+
credential_service=InMemoryCredentialService(),
111111
)
112112

113113
# Create A2A components

0 commit comments

Comments
 (0)