mirror of
https://github.com/Xevion/bulk-reminders.git
synced 2025-12-06 01:14:29 -06:00
10 lines
226 B
Python
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_()
|