Skip to content

Commit e6ef6de

Browse files
committed
print fixes
1 parent ddfe724 commit e6ef6de

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

agentstack/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def list_tools():
315315
for tool in tools:
316316
print(f" - {tool['name']}: {tool['url']}")
317317

318-
print("\n\n❇️ Add a tool with: agentstack tools add <tool_name>")
318+
print("\n\n Add a tool with: agentstack tools add <tool_name>")
319319

320320
except FileNotFoundError:
321321
print("Error: tools.json file not found at path:", tools_json_path)

agentstack/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ def main():
7575
generate_parser.print_help()
7676
elif args.command in ['tools', 't']:
7777
if args.tools_command in ['list', 'l']:
78-
print('list')
7978
list_tools()
8079
elif args.tools_command in ['add', 'a']:
8180
generation.add_tool(args.name)

0 commit comments

Comments
 (0)