From d4eae2b71ec8423061dd7233fb0263c8952a3961 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Thu, 3 Jul 2025 11:22:38 +0200 Subject: [PATCH] remove unneeded mail file --- mail.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 mail.py diff --git a/mail.py b/mail.py deleted file mode 100644 index 1f19755..0000000 --- a/mail.py +++ /dev/null @@ -1,33 +0,0 @@ - -from PyQt6 import QtWidgets - -from src.ui.dialogs.mail import Mail_Dialog - - -def launch_gui(app_id="", app_name="", app_subject="", prof_name="", prof_mail=""): - QtWidgets.QApplication([""]) - - dialog = Mail_Dialog( - app_id=app_id, - app_name=app_name, - app_subject=app_subject, - prof_name=prof_name, - prof_mail=prof_mail, - # default_mail="Information bezüglich der Auflösung des Semesterapparates", - ) - dialog.exec() - - -if __name__ == "__main__": - app_id = "123" - app_name = "Test" - app_subject = "TestFach" - prof_name = "Test" - prof_mail = "kirchneralexander020@gmail.com" - launch_gui( - app_id=app_id, - app_name=app_name, - app_subject=app_subject, - prof_name=prof_name, - prof_mail=prof_mail, - )