|
@@ -136,7 +136,7 @@ class PayPeriod:
|
136
|
136
|
money_left_next = next_period.money_left
|
137
|
137
|
print("Money After Bills + Expenses Next: " + str(money_left_next.quantize(TWOPLACES)))
|
138
|
138
|
|
139
|
|
- if money_left_next <= 0:
|
|
139
|
+ if money_left_next <= 200:
|
140
|
140
|
print("Not enough money left next paycheck!! Expenses being rolled together!")
|
141
|
141
|
self.expenses += next_period.expenses
|
142
|
142
|
self.calculate_budget()
|