Omnibus commited on
Commit
6657883
1 Parent(s): 05863e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  def load_html():
4
  with open('index.html','r') as h:
5
  html=h.read()
6
- html.replace("$name","Test")
7
  h.close()
8
  return html
9
 
 
3
  def load_html():
4
  with open('index.html','r') as h:
5
  html=h.read()
6
+ html = html.replace("$name","Test")
7
  h.close()
8
  return html
9