Omnibus commited on
Commit
87e3bbb
1 Parent(s): b53186f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -19,12 +19,13 @@ def search_fn(query):
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():
 
19
  with open("MyFile.txt", "w") as file:
20
  file.writelines(frame_l)
21
  file.close()
22
+
23
  #print(file1.read())
24
  print (out)
25
+ with open("myfile.txt", "r+") as file1:
26
+ html_out = file1.read()
27
 
28
+ return (html_out)
29
 
30
 
31
  def first():