From f5c2de1e4af8d58d08c4a1e02e748abe68bf2bc3 Mon Sep 17 00:00:00 2001 From: Pavan Kumar <66913595+ascender1729@users.noreply.github.com> Date: Sun, 20 Apr 2025 11:50:04 +0000 Subject: [PATCH] fix(agent): resolve unterminated docstring in add_tool method --- swarms/structs/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/structs/agent.py b/swarms/structs/agent.py index 3a2062d2..b16cfc88 100644 --- a/swarms/structs/agent.py +++ b/swarms/structs/agent.py @@ -1932,7 +1932,7 @@ class Agent: raise error def add_tool(self, tool: Callable): - """Add a single tool to the agent's tools list. + """Add a single tool to the agent's tools list.""" Args: tool (Callable): The tool function to add