AreYouAlive/main.py

10 lines
220 B
Python
Raw Permalink Normal View History

2021-12-29 13:59:57 +01:00
# This Python file uses the following encoding: utf-8
import sys
from PySide6.QtWidgets import QApplication, QWidget, QLineEdit
if __name__ == "__main__":
app = QApplication([])
# ...
sys.exit(app.exec_())