Skip to content

Commit

Permalink
Update Bank project.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RasphyDev authored Jan 15, 2022
1 parent 110d1bf commit f69c5dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bank project.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def createAccount():
money = open(path1+"/Data/user_money/money_{}.txt".format(createUser),"w")
money.write("0")
money.close()
openHistory = open(path1+"/Data/History/history{}.txt".format(createUser),"w")
openHistory = open(path1+"/Data/History/history_{}.txt".format(createUser),"w")
openHistory.close()
createAccountWindow.close()
passwordData.close()
Expand Down Expand Up @@ -481,4 +481,4 @@ def logOut():
askTransferMoneyWindow.ok.clicked.connect(lambda: transferMoneyCustomScript())

# Execute app
app.exec()
app.exec()

0 comments on commit f69c5dc

Please sign in to comment.