We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c332f07 commit e742d43Copy full SHA for e742d43
requirements.txt
@@ -8,4 +8,4 @@ cryptography==41.0.7
8
bcrypt==4.1.2
9
itsdangerous==2.1.2
10
slowapi==0.1.9
11
-
+colorama==0.4.6
run.py
@@ -9,6 +9,12 @@
import subprocess
from pathlib import Path
12
+try:
13
+ import colorama
14
+ colorama.just_fix_windows_console()
15
+except ImportError:
16
+ colorama = None
17
+
18
def main():
19
print("🚀 Starting NoteDiscovery...\n")
20
0 commit comments