Files
shikimori_list_viewer/run.py
2024-01-01 16:19:01 +07:00

14 lines
260 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_())