diff --git a/frontend_new.py b/frontend.py similarity index 100% rename from frontend_new.py rename to frontend.py diff --git a/init.py b/init.py index 1c3e392..e53eb66 100755 --- a/init.py +++ b/init.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -import frontend_new +import frontend import sys if __name__ == "__main__": - frontend_new.main() + frontend.main() sys.exit(0) diff --git a/plot.py b/plot.py index 22df6f1..950961c 100644 --- a/plot.py +++ b/plot.py @@ -1,9 +1,9 @@ #!/usr/bin/python3 -import frontend_new +import frontend import sys if __name__ == "__main__": try: - frontend_new.main() + frontend.main() #input("Done! to exit") sys.exit(0) except KeyboardInterrupt as e: