From 3cf9dd4b31a40c34e65eab23c49b18dff1981b27 Mon Sep 17 00:00:00 2001 From: kerollosy Date: Mon, 9 Oct 2023 10:01:20 +0300 Subject: [PATCH] Initialize colorama --- pilot/utils/style.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pilot/utils/style.py b/pilot/utils/style.py index f1ebaf5e4..e6b73c334 100644 --- a/pilot/utils/style.py +++ b/pilot/utils/style.py @@ -1,4 +1,6 @@ -from colorama import Fore, Style +from colorama import Fore, Style, init + +init() def red(text): return f'{Fore.RED}{text}{Style.RESET_ALL}'