Update app.py
Browse files
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 |
|