1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-17 23:13:03 +08:00

chore(Main.py): 使用 exec() 替换 exec_() 方法

- chore(Main.py): 使用 exec() 替换 exec_() 方法
This commit is contained in:
2026-03-20 19:20:01 +08:00
parent 706fc889f9
commit 571af554d2
+1 -1
View File
@@ -30,7 +30,7 @@ def main():
sys.exit(-1)
window = ALMainWindow()
window.show()
sys.exit(app.exec_())
sys.exit(app.exec())
if __name__ == "__main__":