From dd6fdbbccf6916f62d503282c2658b00e3144ebc Mon Sep 17 00:00:00 2001 From: Anks S <6273915+asarraf@users.noreply.github.com> Date: Sun, 31 Aug 2025 17:34:22 -0700 Subject: [PATCH] Address_Issue_1625: Remove extra preceding space --- docs/agents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/agents.md b/docs/agents.md index 5dbd775a6..d71fa3ec1 100644 --- a/docs/agents.md +++ b/docs/agents.md @@ -16,7 +16,7 @@ from agents import Agent, ModelSettings, function_tool @function_tool def get_weather(city: str) -> str: - """returns weather info for the specified city.""" + """returns weather info for the specified city.""" return f"The weather in {city} is sunny" agent = Agent(