Files
shikimori_list_viewer/run.py
2023-12-29 15:53:12 +07:00

13 lines
258 B
Python

#!/usr/bin/python3
# -*- coding: utf-8 -*-
from sys import argv, exit
from PyQt5.QtWidgets import QApplication
from window import MainWindow
if __name__ == '__main__':
app = QApplication(argv)
win = MainWindow()
win.show()
exit(app.exec())