8000 style(callback_handler): fix docstring for PrintingCallbackHandler.__… · random-user-pr/sdk-python1@b04c4be · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit b04c4be

Browse files
authored
style(callback_handler): fix docstring for PrintingCallbackHandler.__call__ (strands-agents#126)
1 parent 8a29ae5 commit b04c4be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/strands/handlers/callback_handler.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ def __call__(self, **kwargs: Any) -> None:
1717
1818
Args:
1919
**kwargs: Callback event data including:
20-
- reasoningText (Optional[str]): Reasoning text to print if provided.
21-
- data (str): Text content to stream.
22-
- complete (bool): Whether this is the final chunk of a response.
23-
- current_tool_use (dict): Information about the current tool being used.
20+
- reasoningText (Optional[str]): Reasoning text to print if provided.
21+
- data (str): Text content to stream.
22+
- complete (bool): Whether this is the final chunk of a response.
23+
- current_tool_use (dict): Information about the current tool being used.
2424
"""
2525
reasoningText = kwargs.get("reasoningText", False)
2626
data = kwargs.get("data", "")

0 commit comments

Comments
 (0)
0