tonyassi commited on
Commit
a4e0c15
·
1 Parent(s): 524b1bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -2,9 +2,13 @@ import gradio as gr
2
 
3
 
4
  def greet(description,color):
 
5
  final = 'white background '
6
- final += description.replace(' ', '-')
 
 
7
  print(color)
 
8
  return final
9
 
10
  iface = gr.Interface(fn=greet,
 
2
 
3
 
4
  def greet(description,color):
5
+
6
  final = 'white background '
7
+
8
+ final += 'description:' description.replace(' ', '-')
9
+
10
  print(color)
11
+
12
  return final
13
 
14
  iface = gr.Interface(fn=greet,