Reset terminal colors after printing the banner

This commit is contained in:
Alexis Métaireau 2025-03-28 13:30:32 +01:00
parent 983622fe59
commit ed39c056bb
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -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
)