swjin commited on
Commit
d612120
1 Parent(s): acc606f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ def greet(name, is_morning, temperature):
4
  salutation = "Good morning" if is_morning else "Good evening"
5
  greeting = f"{salutation} {name}. It is {temperature} degrees today"
6
  celsius = (temperature - 32) * 5 / 9
7
- return greeting, round(celsius, 2)
8
 
9
  demo = gr.Interface(
10
  fn=greet,
 
4
  salutation = "Good morning" if is_morning else "Good evening"
5
  greeting = f"{salutation} {name}. It is {temperature} degrees today"
6
  celsius = (temperature - 32) * 5 / 9
7
+ return greeting, round(celsius, 3)
8
 
9
  demo = gr.Interface(
10
  fn=greet,