Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,8 +2,7 @@ import gradio as gr
|
|
2 |
|
3 |
def greet(input):
|
4 |
f=float(input)*9/5+32
|
5 |
-
|
6 |
-
return result
|
7 |
|
8 |
|
9 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
|
2 |
|
3 |
def greet(input):
|
4 |
f=float(input)*9/5+32
|
5 |
+
return f
|
|
|
6 |
|
7 |
|
8 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|