AreYouAlive/main.py
2021-12-29 13:59:57 +01:00

10 lines
220 B
Python

# 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_())