From e742d433fcf59894e42114e508019c2e2cc1b84f Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Fri, 2 Jan 2026 16:57:15 +0100 Subject: [PATCH] added colorama --- requirements.txt | 2 +- run.py | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d6f0aef..066c80a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,4 @@ cryptography==41.0.7 bcrypt==4.1.2 itsdangerous==2.1.2 slowapi==0.1.9 - +colorama==0.4.6 diff --git a/run.py b/run.py index 8560f78..0d3b7a9 100644 --- a/run.py +++ b/run.py @@ -9,6 +9,12 @@ import os import subprocess from pathlib import Path +try: + import colorama + colorama.just_fix_windows_console() +except ImportError: + colorama = None + def main(): print("🚀 Starting NoteDiscovery...\n")