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