formatting

This commit is contained in:
0xArty
2023-04-14 20:42:28 +01:00
parent a0e3c238a4
commit 328ba5e69e
40 changed files with 911 additions and 592 deletions

View File

@@ -1,9 +1,11 @@
from colorama import init, Style
from colorama import Style, init
# Initialize colorama
init(autoreset=True)
# Use the bold ANSI style
print(f"""{Style.BRIGHT}Please run:
print(
f"""{Style.BRIGHT}Please run:
python -m autogpt
""")
"""
)