From ed39c056bbbfdc3096253a379d31fee5a44c75e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Fri, 28 Mar 2025 13:30:32 +0100 Subject: [PATCH] Reset terminal colors after printing the banner --- dangerzone/cli.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dangerzone/cli.py b/dangerzone/cli.py index dfac0ae..5e19fab 100644 --- a/dangerzone/cli.py +++ b/dangerzone/cli.py @@ -320,4 +320,10 @@ def display_banner() -> None: + Style.DIM + "│" ) - print(Back.BLACK + Fore.YELLOW + Style.DIM + "╰──────────────────────────╯") + print( + Back.BLACK + + Fore.YELLOW + + Style.DIM + + "╰──────────────────────────╯" + + Style.RESET_ALL + )