This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from PyQt5.QtWidgets import QApplication
from controllers.login import Login
from controllers.assembly.tray_icon import TrayIcon
# 启动程序方法,启动时初始化login界面
def run():
app = QApplication([])
window = Login()
# tray = TrayIcon(app)
window.show()
# tray.show()
app.exec_()