added colorama
This commit is contained in:
parent
c332f07f5c
commit
e742d433fc
|
|
@ -8,4 +8,4 @@ cryptography==41.0.7
|
||||||
bcrypt==4.1.2
|
bcrypt==4.1.2
|
||||||
itsdangerous==2.1.2
|
itsdangerous==2.1.2
|
||||||
slowapi==0.1.9
|
slowapi==0.1.9
|
||||||
|
colorama==0.4.6
|
||||||
|
|
|
||||||
6
run.py
6
run.py
|
|
@ -9,6 +9,12 @@ import os
|
||||||
import subprocess
|
import subprocess
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
try:
|
||||||
|
import colorama
|
||||||
|
colorama.just_fix_windows_console()
|
||||||
|
except ImportError:
|
||||||
|
colorama = None
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
print("🚀 Starting NoteDiscovery...\n")
|
print("🚀 Starting NoteDiscovery...\n")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue