We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9907a41 commit 747679fCopy full SHA for 747679f
src/mcp_client_cli/cli.py
@@ -144,7 +144,6 @@ def print_chunk(chunk: any) -> None:
144
Print the chunk of agent response to the console.
145
It will stream the response to the console as it is received.
146
"""
147
-
148
# If this is a message chunk
149
if isinstance(chunk, tuple) and chunk[0] == "messages":
150
message_chunk = chunk[1][0] # Get the message content
@@ -176,7 +175,7 @@ def print_chunk(chunk: any) -> None:
176
175
for arg, value in args.items():
177
lines.append(f" {arg}: {value}")
178
print("\n".join(lines))
179
- print()
+ print()
180
181
def main() -> None:
182
"""Entry point of the script."""
0 commit comments