Skip to content

Commit

Permalink
Add missing comma in Mint solution (donnemartin#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderteno authored Jul 1, 2020
1 parent b2fffe6 commit 9a02480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/system_design/mint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class Budget(object):
def create_budget_template(self):
return {
'DefaultCategories.HOUSING': income * .4,
'DefaultCategories.FOOD': income * .2
'DefaultCategories.FOOD': income * .2,
'DefaultCategories.GAS': income * .1,
'DefaultCategories.SHOPPING': income * .2
...
Expand Down

0 comments on commit 9a02480

Please sign in to comment.