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

Update app.py

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