Arthur2G commited on
Commit
8fd0d4e
·
1 Parent(s): 8a71ff7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,6 +36,6 @@ theme = gr.themes.Base(
36
  def to_uppercase(text):
37
  return text.upper()
38
 
39
- iface = gr.Interface(fn=uppercto_ase, inputs="text", outputs="text")
40
  iface.launch()
41
 
 
36
  def to_uppercase(text):
37
  return text.upper()
38
 
39
+ iface = gr.Interface(fn=to_uppercase, inputs="text", outputs="text")
40
  iface.launch()
41