From f6106dfa3c87155b2346ba1a58c9f1648a63cc80 Mon Sep 17 00:00:00 2001 From: Mathea Date: Fri, 13 Oct 2023 01:00:46 +0100 Subject: [PATCH] fixed main.py more uranium --- .gitignore | 2 ++ main.py | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd20fdd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +*.pyc diff --git a/main.py b/main.py index 21b4f14..b35b556 100644 --- a/main.py +++ b/main.py @@ -124,7 +124,8 @@ def main(): config = int(input("\n1.AutoSetup\n2.ChangeConfig\n3.StartupMaker\n4.Exit\n>")) if (choice ==1): autoSetup() - elif (choice ==2) + elif (choice ==2): + print("not in use") elif (choice ==3): GenerateStartup() @@ -139,5 +140,5 @@ def main(): #runs main class -#main() -autoSetup() +main() +