Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def greet(name):
|
|
9 |
df = pd.DataFrame(boxes, columns= ['Color','Shape','Price'])
|
10 |
df.to_excel("output.xlsx")
|
11 |
|
12 |
-
return
|
13 |
|
14 |
iface = gr.Interface(fn=greet, inputs="text", outputs="file")
|
15 |
iface.launch()
|
|
|
9 |
df = pd.DataFrame(boxes, columns= ['Color','Shape','Price'])
|
10 |
df.to_excel("output.xlsx")
|
11 |
|
12 |
+
return "output.xlsx"
|
13 |
|
14 |
iface = gr.Interface(fn=greet, inputs="text", outputs="file")
|
15 |
iface.launch()
|