From 0f41d79eeecc76100b0cc6697ddfdf0e0c9ca6ab Mon Sep 17 00:00:00 2001 From: Tremayne Timms <133939329+omnipotence-eth@users.noreply.github.com> Date: Mon, 11 May 2026 16:26:47 -0500 Subject: [PATCH] fix(tools): remove quoted type annotation (UP037) --- src/godspeed/tools/deep_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/godspeed/tools/deep_analysis.py b/src/godspeed/tools/deep_analysis.py index 122f386..e18f958 100644 --- a/src/godspeed/tools/deep_analysis.py +++ b/src/godspeed/tools/deep_analysis.py @@ -115,7 +115,7 @@ async def execute(self, arguments: dict[str, Any], context: ToolContext) -> Tool return ToolResult.failure(f"deep_analysis failed: {exc}") -async def _run_step(llm: Any, prompt: str, step_label: str) -> tuple[str, "str | ToolResult"]: +async def _run_step(llm: Any, prompt: str, step_label: str) -> tuple[str, str | ToolResult]: """Run one step of the analysis pipeline. Returns (prompt_text, response_content). On success the second element is the response string. On failure it is a