From 8bde0cbfab622283e7d910a846517f78cf8a5bd8 Mon Sep 17 00:00:00 2001 From: AviArora02-commits Date: Fri, 24 Apr 2026 20:57:23 +0530 Subject: [PATCH] fix(core): use [warning] markup in uninstall() to match install() style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Uninstall commands were printed in red ([error]) which falsely implied a failure. Changed to [warning] (yellow) to be consistent with how install() displays commands — informational, not alarming. Fixes #662 --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index 985d85a..7f7a019 100644 --- a/core.py +++ b/core.py @@ -225,7 +225,7 @@ class HackingTool: if self.before_uninstall(): if isinstance(self.UNINSTALL_COMMANDS, (list, tuple)): for cmd in self.UNINSTALL_COMMANDS: - console.print(f"[error]→ {cmd}[/error]") + console.print(f"[warning]→ {cmd}[/warning]") os.system(cmd) self.after_uninstall()