Skip to content

Commit

Permalink
print fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Oct 22, 2024
1 parent ddfe724 commit e6ef6de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion agentstack/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def list_tools():
for tool in tools:
print(f" - {tool['name']}: {tool['url']}")

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

except FileNotFoundError:
print("Error: tools.json file not found at path:", tools_json_path)
Expand Down
1 change: 0 additions & 1 deletion agentstack/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ def main():
generate_parser.print_help()
elif args.command in ['tools', 't']:
if args.tools_command in ['list', 'l']:
print('list')
list_tools()
elif args.tools_command in ['add', 'a']:
generation.add_tool(args.name)
Expand Down

0 comments on commit e6ef6de

Please sign in to comment.