tonyassi commited on
Commit
fb05ecc
·
1 Parent(s): a4e0c15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -5,9 +5,11 @@ def greet(description,color):
5
 
6
  final = 'white background '
7
 
8
- final += 'description:' description.replace(' ', '-')
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