chore: Remove rogue print statement from agent_evaluator.py

PiperOrigin-RevId: 823552039
This commit is contained in:
Google Team Member
2025-10-24 09:06:06 -07:00
committed by Copybara-Service
parent d767fccd5b
commit 64d9d6909c
@@ -477,7 +477,6 @@ class AgentEvaluator:
) -> BaseAgent: ) -> BaseAgent:
module_path = f"{module_name}" module_path = f"{module_name}"
agent_module = importlib.import_module(module_path) agent_module = importlib.import_module(module_path)
print(dir(agent_module))
# One of the two things should be satisfied, either the module should have # One of the two things should be satisfied, either the module should have
# an "agent" as a member in it or the module name itself should end with # an "agent" as a member in it or the module name itself should end with