From 9dd6ad746f612f91f119ebcc8c3f5b76ffea9f20 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 24 Jul 2026 11:52:32 -0400 Subject: [PATCH] style(llm): drop noise Any annotation on agent result Co-Authored-By: Claude Opus 4.8 --- hate_crack/llm.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hate_crack/llm.py b/hate_crack/llm.py index 44ad687..89ecd88 100644 --- a/hate_crack/llm.py +++ b/hate_crack/llm.py @@ -4,8 +4,6 @@ Isolates the atomic-agents / instructor dependency. The rest of hate_crack talks to this module only through ``generate_candidates``. """ -from typing import Any - import instructor from openai import OpenAI from pydantic import Field @@ -119,7 +117,7 @@ def generate_candidates( ) ) - result: Any = agent.run(GenerationInput(request=request)) + result = agent.run(GenerationInput(request=request)) seen: set[str] = set() candidates: list[str] = []