not-lain commited on
Commit
51e9a2b
1 Parent(s): 65daf60
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ enable_space_ci()
7
 
8
 
9
  def talk(text):
10
- return "hi "+text
11
 
12
  demo = gr.Interface(fn=talk, inputs="text", outputs="label")
13
  demo.launch()
 
7
 
8
 
9
  def talk(text):
10
+ return ("hi "+text)
11
 
12
  demo = gr.Interface(fn=talk, inputs="text", outputs="label")
13
  demo.launch()