NadaAljohani commited on
Commit
3707544
·
verified ·
1 Parent(s): 0c2ebda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import gradio as gr
2
 
3
- def convertTemp(celsius):
4
  f = c * 9/5 + 32
5
  return f"{c}°C is equal to {f}°F"
6
 
 
1
  import gradio as gr
2
 
3
+ def convertTemp(c):
4
  f = c * 9/5 + 32
5
  return f"{c}°C is equal to {f}°F"
6