Namitg02 commited on
Commit
af3d16b
·
verified ·
1 Parent(s): a5e3e93

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -130,7 +130,7 @@ def talk(prompt, history):
130
  # write data to file
131
  with open('file.txt', 'a') as data:
132
  data.write(historylog)
133
- data.open('r')
134
  data.seek(0)
135
  # Read the contents of the file to display it.
136
  print("History log printed:")
 
130
  # write data to file
131
  with open('file.txt', 'a') as data:
132
  data.write(historylog)
133
+ data = open('file.txt', 'r')
134
  data.seek(0)
135
  # Read the contents of the file to display it.
136
  print("History log printed:")