Spaces:
Sleeping
Sleeping
Missed a few commas in my dict
Browse files
app.py
CHANGED
@@ -19,17 +19,17 @@ def barbecue_sauce_tool(location:str, meat:int)-> str: #it's import to specify t
|
|
19 |
sauces = {
|
20 |
"kansas city": {
|
21 |
"beef": "vinegar",
|
22 |
-
"chicken": "mustard"
|
23 |
"other": "hot"
|
24 |
},
|
25 |
"memphis": {
|
26 |
"beef": "ketchup-based",
|
27 |
-
"chicken": "tomato-based"
|
28 |
"other": "molasses-based"
|
29 |
},
|
30 |
"other": {
|
31 |
"beef": "vinegar",
|
32 |
-
"chicken": "tomato-based"
|
33 |
"other": "vinegar"
|
34 |
}
|
35 |
}
|
|
|
19 |
sauces = {
|
20 |
"kansas city": {
|
21 |
"beef": "vinegar",
|
22 |
+
"chicken": "mustard",
|
23 |
"other": "hot"
|
24 |
},
|
25 |
"memphis": {
|
26 |
"beef": "ketchup-based",
|
27 |
+
"chicken": "tomato-based",
|
28 |
"other": "molasses-based"
|
29 |
},
|
30 |
"other": {
|
31 |
"beef": "vinegar",
|
32 |
+
"chicken": "tomato-based",
|
33 |
"other": "vinegar"
|
34 |
}
|
35 |
}
|