khaled06 commited on
Commit
8e2cfd3
·
verified ·
1 Parent(s): 8d5b36d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
 
3
  def greet(input):
4
- result = (float)input * 9/5 + 3
5
- return result
6
 
7
  demo = gr.Interface(fn=greet, inputs='text', outputs='text')
8
  demo.launch()
 
1
  import gradio as gr
2
 
3
  def greet(input):
4
+
5
+ return (float)input * 9/5 + 3
6
 
7
  demo = gr.Interface(fn=greet, inputs='text', outputs='text')
8
  demo.launch()