tonyassi commited on
Commit
fc1aea8
·
1 Parent(s): 0fbab94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -6,10 +6,11 @@ def greet(description,color,features):
6
  final = 'white background '
7
 
8
  description = 'description:' + description.replace(' ', '-')
9
-
10
- print('-'.join(color))
11
 
12
- final += description
 
 
 
13
 
14
  return final
15
 
 
6
  final = 'white background '
7
 
8
  description = 'description:' + description.replace(' ', '-')
 
 
9
 
10
+ color = ' color:' + '-'.join(color)
11
+
12
+
13
+ final += description + color
14
 
15
  return final
16