DavidSB commited on
Commit
aec3731
·
1 Parent(s): dded24e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -135,7 +135,6 @@ entradas = [
135
  ]
136
 
137
  saida = gr.outputs.JSON()
138
- theme=gr.themes.Soft(primary_hue="teal",secondary_hue="teal"),
139
 
140
- interface = gr.Interface(fn=calcular_valor_imovel, inputs=entradas, outputs=saida, title = "avalia.EVO", description="Método Evolutivo (Terreno + Construção)",theme=theme)
141
  interface.launch()
 
135
  ]
136
 
137
  saida = gr.outputs.JSON()
 
138
 
139
+ interface = gr.Interface(fn=calcular_valor_imovel, inputs=entradas, outputs=saida, title = "avalia.EVO", description="Método Evolutivo (Terreno + Construção)",theme=gr.themes.Soft(primary_hue="teal",secondary_hue="teal"))
140
  interface.launch()