From ce45d3fa7c6318b6980c013ecac2e7f08d29cb94 Mon Sep 17 00:00:00 2001 From: xpamych Date: Fri, 2 Jun 2023 18:11:15 +0300 Subject: [PATCH] =?UTF-8?q?color=20=D0=B4=D0=BB=D1=8F=20=D1=82=D0=BE=D1=87?= =?UTF-8?q?=D0=B5=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hlna.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hlna.py b/hlna.py index 6bf74ec..bd296e2 100755 --- a/hlna.py +++ b/hlna.py @@ -200,9 +200,9 @@ def print_line(*text, flag="", sep=" ", end="\n"): len_text = str(*text) len_text = len_text.split("\n") max_length = max(len(string) for string in len_text)+2 - print(colorama.Fore.LIGHTGREEN_EX + "." * max_length) + print(color + "." * max_length) print(color, *text, sep=sep, end=end) - print(colorama.Fore.LIGHTGREEN_EX + "." * max_length + colorama.Style.RESET_ALL) + print(color + "." * max_length + colorama.Style.RESET_ALL) def check_int(number=""):