Skip to content

Commit c3f716a

Browse files
committed
Fancy term color on remove statement
1 parent 2a736bc commit c3f716a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agentstack/generation/tool_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def remove_tool(tool_name: str, path: Optional[str] = None):
8686
with open(f'{path}{AGENTSTACK_JSON_FILENAME}', 'w') as f:
8787
json.dump(agentstack_json, f, indent=4)
8888

89-
print(term_color(f'🔨 Tool {tool_name} removed from agentstack project successfully', 'green'))
89+
print(term_color(f'🔨 Tool {tool_name}', 'green'), term_color('removed', 'red'), term_color('from agentstack project successfully', 'green'))
9090

9191

9292
def _format_tool_import_statement(tool_data: dict):

0 commit comments

Comments
 (0)