Namitg02 commited on
Commit
a55e65f
·
verified ·
1 Parent(s): 27d4ea6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -125,7 +125,7 @@ def talk(prompt, history):
125
  print("history log")
126
  print(str(historylog))
127
  print("history log printed")
128
- with open('file.txt', 'w+') as data:
129
  data.write(str(historylog))
130
  data.seek(0)
131
  print(data.read())
 
125
  print("history log")
126
  print(str(historylog))
127
  print("history log printed")
128
+ with open('file.txt', 'a') as data:
129
  data.write(str(historylog))
130
  data.seek(0)
131
  print(data.read())