tclopess commited on
Commit
ee58b50
1 Parent(s): 686d56e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -5,11 +5,6 @@ def mensagem(nome):
5
 
6
  app_title = "Welcome! Allow me to introduce? Type your name!"
7
 
8
- app_css = """
9
- .gr-interface-title {
10
- text-align: center;
11
- }
12
- """
13
 
14
- mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title, css=app_css)
15
  mostrar.launch()
 
5
 
6
  app_title = "Welcome! Allow me to introduce? Type your name!"
7
 
 
 
 
 
 
8
 
9
+ mostrar = gr.Interface(fn=mensagem, inputs="text", outputs="text", title=app_title)
10
  mostrar.launch()