From bb6783ebe28fafde9a7e84549d9546dd2159390c Mon Sep 17 00:00:00 2001 From: mirai Date: Thu, 1 Dec 2022 10:34:41 +0300 Subject: [PATCH] Updated client/client.py --- client/client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/client.py b/client/client.py index 8b9f31e..0c218de 100644 --- a/client/client.py +++ b/client/client.py @@ -4,8 +4,11 @@ import rsa import platform import requests import threading +from colorama import init from cryptography.fernet import Fernet +init() + OS = "Windows" if "Linux" in str(platform.platform()): OS = "Linux"