Files
bulk-reminders/main.py
2021-08-25 02:30:10 -05:00

10 lines
226 B
Python

from PyQt5.QtWidgets import QApplication
from bulk_reminders.gui import MainWindow
if __name__ == '__main__':
app = QApplication([])
app.setApplicationName("TCPChat Client")
window = MainWindow()
app.exec_()