File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ async def async_on_message(
150150
151151 on_message = syncify (async_on_message )
152152
153- mcp_client = await self ._mcp_client_manager_manager .get_mcp_client_manager ( # type: ignore
153+ mcp_client = await self ._mcp_client_manager_manager .get_mcp_client_manager (
154154 self ._workspace_id
155155 )
156156
@@ -159,7 +159,7 @@ def _run_agent_inner() -> None:
159159 mcp_client = mcp_client ,
160160 include = set (self ._assistant .tools ),
161161 )
162- # TODO Remove this after having extracted tools into Android MCP
162+ # Remove this after having extracted tools into Android MCP
163163 if self ._run .assistant_id == ANDROID_AGENT .id :
164164 tools .append_tool (* _get_android_tools ())
165165 custom_agent = CustomAgent ()
Original file line number Diff line number Diff line change 1+ import json
12import types
23from abc import ABC , abstractmethod
34from datetime import timedelta
@@ -154,7 +155,7 @@ async def __aexit__(
154155
155156def _replace_refs (tool_name : str , input_schema : InputSchema ) -> InputSchema :
156157 try :
157- return jsonref .replace_refs (
158+ return jsonref .replace_refs ( # type: ignore[no-any-return]
158159 input_schema ,
159160 lazy_load = False ,
160161 proxies = False ,
You can’t perform that action at this time.
0 commit comments