From 5c9cd64c090c1a5fd07304113563c28a7cd8caf5 Mon Sep 17 00:00:00 2001 From: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> Date: Fri, 24 Apr 2026 15:13:53 +0800 Subject: [PATCH] fix: use [warning] markup for uninstall commands instead of [error] (Closes #662) Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> --- 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()