bbenedict commited on
Commit
c5486ee
·
verified ·
1 Parent(s): f7b4e09

Missed a few commas in my dict

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
  }