From 4f017081fcc8fd4656a71fb4d7b7b54f37d11629 Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Mon, 17 Mar 2025 06:50:05 +0100 Subject: [PATCH] Quick fix docs (#7299) Co-authored-by: openhands --- openhands/agenthub/codeact_agent/codeact_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/agenthub/codeact_agent/codeact_agent.py b/openhands/agenthub/codeact_agent/codeact_agent.py index bd7802e285..a9cbbca64a 100644 --- a/openhands/agenthub/codeact_agent/codeact_agent.py +++ b/openhands/agenthub/codeact_agent/codeact_agent.py @@ -73,7 +73,7 @@ class CodeActAgent(Agent): llm=self.llm, ) logger.debug( - f'TOOLS loaded for CodeActAgent: {', '.join([tool.get('function').get('name') for tool in self.tools])}' + f"TOOLS loaded for CodeActAgent: {', '.join([tool.get('function').get('name') for tool in self.tools])}" ) self.prompt_manager = PromptManager( prompt_dir=os.path.join(os.path.dirname(__file__), 'prompts'),