Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
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 |
|