diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc12cb7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +__pycache__ \ No newline at end of file diff --git a/config.py b/config.py index 26d2250..beadf02 100644 --- a/config.py +++ b/config.py @@ -30,9 +30,9 @@ ALIVEPING = os.getenv("ALIVEPING") IGNOREWARNING = False song = os.getenv("song") arch = platform.machine() -RED = "\033[31mError: " -GREEN = "\033[32mSuccess: " -YELLOW = "\033[33mWarning: " -DEBUG = "\033[1;30mDebug: " +RED = "\033[31m" +GREEN = "\033[32m" +YELLOW = "\033[33m" +DEBUG = "\033[1;30m" RESET = "\033[0m"