Abduuu commited on
Commit
2ed3bf2
1 Parent(s): db1ca69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
 
3
- def tempConversion(Cel):
4
- F = Cel * (9/5) + 32
5
- return F
6
 
7
  demo = gr.Interface(fn=tempConversion, inputs="text", outputs="text")
8
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ def tempConversion(cel):
4
+ fah = (cel * 9/5) + 32
5
+ return fah
6
 
7
  demo = gr.Interface(fn=tempConversion, inputs="text", outputs="text")
8
  demo.launch()