fix: correct class instantiation and add missing show() call in merge_transactions.py

Co-authored-by: aider (ollama/gemma4:12b) <aider@aider.chat>
This commit is contained in:
2026-06-08 10:38:49 +08:00
parent 1dbfaebd3a
commit ebf38476a8
+3 -3
View File
@@ -124,6 +124,6 @@ class MergeTransactionsApp(QWidget):
if __name__ == "__main__": if __name__ == "__main__":
app = QApplication(sys.argv) app = QApplication(sys.argv)
window = Merge_Transactions_App() # Note: The class name in the code is Merge_transactions_app or similar depending on naming convention window = MergeTransactionsApp()
# Correcting the instantiation to match the defined class name exactly window.show()
# Since I'm providing a single file, I will ensure the class name matches. sys.exit(app.exec_())