khaled06 commited on
Commit
ee2224b
1 Parent(s): 17e8614

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
  def greet(input):
4
- f =(float)input
5
 
6
  return f * 9/5 + 3
7
 
 
1
  import gradio as gr
2
 
3
  def greet(input):
4
+ f =float(input)
5
 
6
  return f * 9/5 + 3
7