Omnibus commited on
Commit
b53186f
·
1 Parent(s): dacb5fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -18,11 +18,13 @@ def search_fn(query):
18
 
19
  with open("MyFile.txt", "w") as file:
20
  file.writelines(frame_l)
21
-
 
 
22
  print (out)
23
 
24
 
25
- return ("myfile.txt")
26
 
27
 
28
  def first():
 
18
 
19
  with open("MyFile.txt", "w") as file:
20
  file.writelines(frame_l)
21
+ file.close()
22
+ with open("myfile.txt", "r+") as file1:
23
+ #print(file1.read())
24
  print (out)
25
 
26
 
27
+ return (file1.read())
28
 
29
 
30
  def first():