Add missing comma in Mint solution (#399)
parent
b2fffe6fd4
commit
9a02480632
|
@ -242,7 +242,7 @@ class Budget(object):
|
||||||
def create_budget_template(self):
|
def create_budget_template(self):
|
||||||
return {
|
return {
|
||||||
'DefaultCategories.HOUSING': income * .4,
|
'DefaultCategories.HOUSING': income * .4,
|
||||||
'DefaultCategories.FOOD': income * .2
|
'DefaultCategories.FOOD': income * .2,
|
||||||
'DefaultCategories.GAS': income * .1,
|
'DefaultCategories.GAS': income * .1,
|
||||||
'DefaultCategories.SHOPPING': income * .2
|
'DefaultCategories.SHOPPING': income * .2
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in New Issue