From 23c4b75de861ed1043e9980464a265889cabf916 Mon Sep 17 00:00:00 2001 From: Arron Bailiss Date: Tue, 27 May 2025 12:45:09 -0400 Subject: [PATCH] style(callback_handler): fix docstring for PrintingCallbackHandler.__call__ --- src/strands/handlers/callback_handler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/strands/handlers/callback_handler.py b/src/strands/handlers/callback_handler.py index e46cb326a..4b794b4f8 100644 --- a/src/strands/handlers/callback_handler.py +++ b/src/strands/handlers/callback_handler.py @@ -17,10 +17,10 @@ def __call__(self, **kwargs: Any) -> None: Args: **kwargs: Callback event data including: - - reasoningText (Optional[str]): Reasoning text to print if provided. - - data (str): Text content to stream. - - complete (bool): Whether this is the final chunk of a response. - - current_tool_use (dict): Information about the current tool being used. + - reasoningText (Optional[str]): Reasoning text to print if provided. + - data (str): Text content to stream. + - complete (bool): Whether this is the final chunk of a response. + - current_tool_use (dict): Information about the current tool being used. """ reasoningText = kwargs.get("reasoningText", False) data = kwargs.get("data", "")