azaninello commited on
Commit
4340f13
·
1 Parent(s): 23f97c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,10 +16,10 @@ def sentence(cerca_una_parola):
16
  def upper(cerca_una_parola):
17
  return cerca_una_parola.upper()
18
 
19
- demo = fr.Textbox(fn=sentence, inputs='text', outputs='text')
20
  demo.launch()
21
 
22
- demo2 = fr.Textbox(fn=upper, inputs='text', outputs='text')
23
  demo2.launch()
24
 
25
  '''
 
16
  def upper(cerca_una_parola):
17
  return cerca_una_parola.upper()
18
 
19
+ demo = gr.Textbox(fn=sentence, inputs='text', outputs='text')
20
  demo.launch()
21
 
22
+ demo2 = gr.Textbox(fn=upper, inputs='text', outputs='text')
23
  demo2.launch()
24
 
25
  '''