ghadaAlmuaikel commited on
Commit
f1c35d7
1 Parent(s): d4cf105

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,5 +5,5 @@ def Celsius_To_Fahrenheit(input):
5
  F=C * 9/5 + 32
6
  return F
7
 
8
- demo = gr.Interface(fn=Celsius_To_Fahrenheit, inputs="text", outputs="text",description="convert")
9
  demo.launch()
 
5
  F=C * 9/5 + 32
6
  return F
7
 
8
+ demo = gr.Interface(fn=Celsius_To_Fahrenheit, inputs="text", outputs="text",description="Enter temperature in Celsius and the output being the conversion to Fahrenheit")
9
  demo.launch()