Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -7,10 +7,11 @@ def greet(description,color,features):
|
|
7 |
|
8 |
description = 'description:' + description.replace(' ', '-')
|
9 |
|
10 |
-
color = ' color:' + '
|
11 |
-
|
12 |
|
13 |
-
|
|
|
|
|
14 |
|
15 |
return final
|
16 |
|
|
|
7 |
|
8 |
description = 'description:' + description.replace(' ', '-')
|
9 |
|
10 |
+
color = ' color:' + ','.join(color)
|
|
|
11 |
|
12 |
+
features = ' features:' + ','.join(features)
|
13 |
+
|
14 |
+
final += description + color + features
|
15 |
|
16 |
return final
|
17 |
|