Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
| 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 |
|